Merge pull request #516 from dlang-community/issue-515

Fix #515
This commit is contained in:
Brian Schott 2020-10-07 14:14:03 -07:00 committed by GitHub
commit e880e00e73
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;
}
}