This commit is contained in:
Hackerpilot 2015-03-10 03:08:06 -07:00
parent cade56450c
commit 0ae8eccc2f
3 changed files with 24 additions and 1 deletions

View File

@ -438,6 +438,7 @@ private:
{ {
indentLevel++; indentLevel++;
writeToken(); writeToken();
if (!currentIs(tok!"{"))
newline(); newline();
} }
else if (peekBackIs(tok!"identifier") && (index <= 1 else if (peekBackIs(tok!"identifier") && (index <= 1

11
tests/issue0079.d Normal file
View File

@ -0,0 +1,11 @@
unittest
{
switch (x)
{
case a:
{
}
case b:
return;
}
}

11
tests/issue0079.d.ref Normal file
View File

@ -0,0 +1,11 @@
unittest
{
switch (x)
{
case a:
{
}
case b:
return;
}
}