This commit is contained in:
Hackerpilot 2020-10-07 02:19:55 -07:00
parent 7659b1ae1a
commit 41e8c05558
4 changed files with 20 additions and 1 deletions

View File

@ -224,7 +224,7 @@ private:
else if (currentIs(tok!"return"))
{
writeToken();
if (!currentIs(tok!";") && !currentIs(tok!")"))
if (!currentIs(tok!";") && !currentIs(tok!")") && !currentIs(tok!"{"))
write(" ");
}
else if (currentIs(tok!"with"))

View File

@ -0,0 +1,7 @@
struct S
{
ref S foo() return
{
return this;
}
}

7
tests/issue0515.d Normal file
View File

@ -0,0 +1,7 @@
struct S
{
ref S foo() return
{
return this;
}
}

View File

@ -0,0 +1,5 @@
struct S {
ref S foo() return {
return this;
}
}