dfmt/tests/issue0097.d

43 lines
310 B
D

unittest
{
switch (x)
{
case 0:
version (none)
{
// Comment
case '\n':
break;
}
}
}
unittest
{
switch (x)
{
case 0:
{
Label: while (1)
{
}
break;
}
Label2:
doStuff();
}
}
unittest
{
switch (a)
{
case a:
doStuff();
doOtherStuff();
break;
default:
break;
}
}