Comment #1 by bearophile_hugs — 2013-03-30T20:05:38Z
A little reduced, but I don't know if the bug is the same:
import std.stdio: writeln;
struct Foo {
int[] items;
}
union Bar {
int nul;
Foo test;
}
struct Spam {
Bar b = {nul : 0};
}
void main() {
immutable Spam s;
writeln(s);
}