Fix #515
This commit is contained in:
parent
7659b1ae1a
commit
41e8c05558
|
@ -224,7 +224,7 @@ private:
|
||||||
else if (currentIs(tok!"return"))
|
else if (currentIs(tok!"return"))
|
||||||
{
|
{
|
||||||
writeToken();
|
writeToken();
|
||||||
if (!currentIs(tok!";") && !currentIs(tok!")"))
|
if (!currentIs(tok!";") && !currentIs(tok!")") && !currentIs(tok!"{"))
|
||||||
write(" ");
|
write(" ");
|
||||||
}
|
}
|
||||||
else if (currentIs(tok!"with"))
|
else if (currentIs(tok!"with"))
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
struct S
|
||||||
|
{
|
||||||
|
ref S foo() return
|
||||||
|
{
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,7 @@
|
||||||
|
struct S
|
||||||
|
{
|
||||||
|
ref S foo() return
|
||||||
|
{
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,5 @@
|
||||||
|
struct S {
|
||||||
|
ref S foo() return {
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue