mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
9 lines
144 B
D
9 lines
144 B
D
// 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);
|
|
}
|