digitalmars.D.bugs - crashes by compile error[0.101 win32]
- k2 (10/10) Sep 01 2004 If the property of the identifier which does not exist in a module is ac...
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