http://dpaste.1azy.net/9c18092d
Code: import std.stdio; extern(Windows) void foo(); void bar(); void main() { alias typeof(foo) F; alias extern(Windows) typeof(bar) B; writeln(F.stringof); writeln(B.stringof); // expected result as foo gives } Output: extern (Windows) void() void() (Taken 1:1 from dpaste)
*** Issue 11379 has been marked as a duplicate of this issue. ***
THIS ISSUE HAS BEEN MOVED TO GITHUB https://github.com/dlang/dmd/issues/18616 DO NOT COMMENT HERE ANYMORE, NOBODY WILL SEE IT, THIS ISSUE HAS BEEN MOVED TO GITHUB