ubuntu-buildroot/output/build/host-gcc-initial-11.4.0/gcc/testsuite/gdc.dg/pr101490.d

22 lines
264 B
D

// https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101490
// { dg-do compile }
struct S101490
{
int[0] arr;
}
void main()
{
S101490* t;
auto a = cast(typeof(t.arr)[0])t.arr;
write(a);
}
void write(S)(S args)
{
foreach (arg; args)
{
}
}