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