D - [Bug]
- Andrew Edwards (12/12) Feb 15 2004 The following code crashes the compiler
The following code crashes the compiler void main() { A!(int).a(1); } template A(T){ void a(T t){ switch (T.size) //case (Object).size: break; // ok case (object).size: break; // chashes here } }
Feb 15 2004