http://bugzilla.gdcproject.org/show_bug.cgi?id=183
Iain Buclaw <ibuc...@gdcproject.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED --- Comment #1 from Iain Buclaw <ibuc...@gdcproject.org> --- It appears that anonymous structs are not emitted at all. Meaning that we have the following initialiser: union { NAN, NAN, NAN } When we are instead expecting: union { { NAN, NAN, NAN } } This is because unions can only have one value to initialise them, not three. -- You are receiving this mail because: You are watching all bug changes.