We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
http://dpaste.1azy.net/9c18092d
The text was updated successfully, but these errors were encountered:
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)
Sorry, something went wrong.
*** Issue 11379 has been marked as a duplicate of this issue. ***
No branches or pull requests
Temtaime (@Temtaime) reported this on 2013-06-25T01:41:20Z
Transferred from https://issues.dlang.org/show_bug.cgi?id=10470
CC List
Description
http://dpaste.1azy.net/9c18092dThe text was updated successfully, but these errors were encountered: