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,7 +438,8 @@ private:
{
indentLevel++;
writeToken();
newline();
if (!currentIs(tok!"{"))
newline();
}
else if (peekBackIs(tok!"identifier") && (index <= 1
|| peekBack2Is(tok!"{", true) || peekBack2Is(tok!"}", true)

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;
}
}