http://d.puremagic.com/issues/show_bug.cgi?id=1415
------- Comment #1 from baryluk at mpi.int.pl 2007-09-02 08:41 -------
Simpler example.
module bug;
class X {
char[] name;
static void a() {
assert(name is null);
}
}
void main() {
}
--