dfmt/tests/issue0043.d.ref

16 lines
199 B
Plaintext

unittest
{
switch (something) with (stuff)
{
case 1:
case 2:
label:
doStuff();
case 3:
doOtherSTuff();
goto label;
default:
break;
}
}