This commit is contained in:
Hackerpilot 2016-04-28 15:23:00 -07:00
parent 049b151bac
commit d6861cc5a2
4 changed files with 16 additions and 0 deletions

View File

@ -943,6 +943,11 @@ private:
newline();
}
break;
case tok!"body":
if (!peekBackIs(tok!"}"))
newline();
writeToken();
break;
case tok!"in":
immutable isContract = astInformation.contractLocations.canFindIndex(current.index);
if (isContract)

View File

@ -0,0 +1,4 @@
void round()
body
{
}

4
tests/issue0241.d Normal file
View File

@ -0,0 +1,4 @@
void round()
body
{
}

View File

@ -0,0 +1,3 @@
void round()
body {
}