digitalmars.D.bugs - compiler crash when assigning init property of struct
- Leo Walkling (10/10) May 06 2007 Using DMD 1.014 I get a compiler crash without message when compiling co...
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








Leo Walkling <leopold_walkling web.de>