Merge pull request #441 from kotet/issue-426
Fix #426 merged-on-behalf-of: Basile-z <Basile-z@users.noreply.github.com>
This commit is contained in:
commit
6d2a56e15e
|
@ -716,6 +716,7 @@ private:
|
|||
}
|
||||
else if (index < tokens.length && (currentIs(tok!"@")
|
||||
|| isBasicType(tokens[index].type)
|
||||
|| currentIs(tok!"extern")
|
||||
|| currentIs(tok!"identifier"))
|
||||
&& !currentIsIndentedTemplateConstraint())
|
||||
write(" ");
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
import std.stdio;
|
||||
|
||||
@safe extern (C) void main()
|
||||
{
|
||||
writeln("Hello World!");
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
import std.stdio;
|
||||
|
||||
@safe extern(C) void main() {
|
||||
writeln("Hello World!");
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
import std.stdio;
|
||||
|
||||
@safe extern (C) void main() {
|
||||
writeln("Hello World!");
|
||||
}
|
Loading…
Reference in New Issue