blob: 911081f665251be2a568df2b820bf59d12f9a925 [file] [log] [blame]
class A {
void foo(){
switch (x)
{
case 0:
{ // don't want the brace indented
break;
}
case 1:
{
break;
}
}
}
}