May 06, 2007
Using DMD 1.014 I get a compiler crash without message when compiling code like this:

struct A {
   uint u;
}
void main()
{
   static A a = {9};
   a = a.init;
}