Files
ldc/tests/mini/bug5.d

18 lines
163 B
D

module bug5;
struct hah {
static hah f()
{
hah res;
return res;
}
hah g()
{
return hah.init;
}
}
void main()
{
}