blob: 136e89ffda2e0e04a1e28d47963fdb15cd10f58f [file] [log] [blame]
// https://issues.dlang.org/show_bug.cgi?id=19804
struct A { float e; }
void foo(A[1] a)
{
void bar(A[1] a) { a[] = null; }
bar(a);
}