https://issues.dlang.org/show_bug.cgi?id=18305
--- Comment #1 from FeepingCreature <[email protected]> --- Shorter example: union S { int a, b; } void main() { // compiles if (S.init is S.init) { } // doesn't compile mixin({ if (S.init is S.init) return ""; else return ""; }()); } --
