return without argument must have no space
This commit is contained in:
parent
cb9a4015e7
commit
de1f052b73
|
@ -228,7 +228,8 @@ private:
|
||||||
else if (current.type == tok!"return")
|
else if (current.type == tok!"return")
|
||||||
{
|
{
|
||||||
writeToken();
|
writeToken();
|
||||||
write(" ");
|
if (current.type != tok!";")
|
||||||
|
write(" ");
|
||||||
}
|
}
|
||||||
else if (current.type == tok!"switch")
|
else if (current.type == tok!"switch")
|
||||||
formatSwitch();
|
formatSwitch();
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
import std.stdio;
|
||||||
|
class Foo {}
|
||||||
|
import std.conv;
|
||||||
|
const bar = 42;
|
||||||
|
void main() {return;}
|
||||||
|
const baz = 11;
|
||||||
|
class Foo2:Foo {}
|
|
@ -0,0 +1,20 @@
|
||||||
|
import std.stdio;
|
||||||
|
|
||||||
|
class Foo
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
import std.conv;
|
||||||
|
|
||||||
|
const bar = 42;
|
||||||
|
|
||||||
|
void main()
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const baz = 11;
|
||||||
|
|
||||||
|
class Foo2 : Foo
|
||||||
|
{
|
||||||
|
}
|
Loading…
Reference in New Issue