Fix #426
This commit is contained in:
parent
999c044020
commit
f8f34ff097
|
@ -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