https://issues.dlang.org/show_bug.cgi?id=21171
Iain Buclaw <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from Iain Buclaw <[email protected]> --- Don't even need to have it in two separate sources. --- struct Token { union { sinteger_t intvalue; uinteger_t unsvalue; } } static if (0) { } else { alias Uint64 = ulong; alias Int64 = long; } alias sinteger_t = Int64; alias uinteger_t = Uint64; --
