September 01, 2004
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;
}