https://issues.dlang.org/show_bug.cgi?id=7417
anonymous4 <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |spec --- Comment #10 from anonymous4 <[email protected]> --- Workaround: --- template Defined(string s) { mixin(`version(`~s~`)enum Defined=true;else enum Defined=false;`); } struct SVersion { alias opDispatch(string s)=Defined!s; } enum Version=SVersion(); int main() { static if(Version.OSX)writeln("running OSX"); else writeln("no"); return 0; } --- --
