This commit is contained in:
Kotet 2019-05-13 17:49:12 +09:00
parent 999c044020
commit f8f34ff097
4 changed files with 17 additions and 0 deletions

View File

@ -716,6 +716,7 @@ private:
} }
else if (index < tokens.length && (currentIs(tok!"@") else if (index < tokens.length && (currentIs(tok!"@")
|| isBasicType(tokens[index].type) || isBasicType(tokens[index].type)
|| currentIs(tok!"extern")
|| currentIs(tok!"identifier")) || currentIs(tok!"identifier"))
&& !currentIsIndentedTemplateConstraint()) && !currentIsIndentedTemplateConstraint())
write(" "); write(" ");

View File

@ -0,0 +1,6 @@
import std.stdio;
@safe extern (C) void main()
{
writeln("Hello World!");
}

5
tests/issue0426.d Normal file
View File

@ -0,0 +1,5 @@
import std.stdio;
@safe extern(C) void main() {
writeln("Hello World!");
}

View File

@ -0,0 +1,5 @@
import std.stdio;
@safe extern (C) void main() {
writeln("Hello World!");
}