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!"@")
|
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(" ");
|
||||||
|
|
|
@ -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