This commit is contained in:
Hackerpilot 2015-03-16 15:45:22 -07:00
parent a82eb7aa57
commit efc9d72c95
4 changed files with 48 additions and 4 deletions

View File

@ -605,7 +605,8 @@ private:
void formatSwitch()
{
if (indents.length == 0 || indents.top != tok!"with")
if (indents.length > 0 && indents.top == tok!"with")
indents.pop();
indents.push(tok!"switch");
writeToken(); // switch
write(" ");

View File

@ -0,0 +1,15 @@
void msgpackToGValue(MsgValue input)
{
with (MsgValue.Type) switch (input.type)
{
case boolean:
a();
break;
case unsigned:
b();
break;
default:
assert(false);
}
return retVal;
}

15
tests/issue0107.d Normal file
View File

@ -0,0 +1,15 @@
void msgpackToGValue(MsgValue input)
{
with (MsgValue.Type) switch (input.type)
{
case boolean:
a();
break;
case unsigned:
b();
break;
default:
assert(false);
}
return retVal;
}

View File

@ -0,0 +1,13 @@
void msgpackToGValue(MsgValue input) {
with (MsgValue.Type) switch (input.type) {
case boolean:
a();
break;
case unsigned:
b();
break;
default:
assert(false);
}
return retVal;
}