d: Merge upstream dmd 568496d5b, druntime 178c44ff, phobos 574bf883b.
[official-gcc.git] / gcc / testsuite / gdc.test / compilable / test19804.d
blob136e89ffda2e0e04a1e28d47963fdb15cd10f58f
1 // https://issues.dlang.org/show_bug.cgi?id=19804
3 struct A { float e; }
5 void foo(A[1] a)
7 void bar(A[1] a) { a[] = null; }
8 bar(a);