www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - crashes by compile error[0.101 win32]

If the property of the identifier which does not exist in a module is accessed,
a compiler will crash. 

// sample
module foo;

int main(char[][] args)
{
foo.undefined;// ok
foo.undefined.bar;// crash

return 0;
}
Sep 01 2004