[Issue 4836] "duplicated union initialization" without a union

2012-01-06 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4836 Trass3r changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 4836] "duplicated union initialization" without a union

2011-02-06 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4836 Brad Roberts changed: What|Removed |Added Platform|x86_64 |x86 --- Comment #2 from Brad Roberts 2

[Issue 4836] "duplicated union initialization" without a union

2010-09-08 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4836 --- Comment #1 from Ivo Kasiuk 2010-09-08 11:06:48 PDT --- Also, line 6 seems to have no influence, so the following still does not compile: class C { string s = null; mixin template M() { } mixin M!() m1; mixin template M(T) { } } On