www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - compiler crash when assigning init property of struct

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;
}
May 06 2007