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:
The Dlang Bot 2019-05-13 11:06:56 +02:00 committed by GitHub
commit 6d2a56e15e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 17 additions and 0 deletions

View File

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