mirror of
https://github.com/dlang-community/dfmt.git
synced 2025-04-25 21:00:03 +03:00
12 lines
156 B
D
12 lines
156 B
D
unittest
|
|
{
|
|
switch (something) with (stuff){
|
|
case 1: case 2:
|
|
label:doStuff();
|
|
case 3: .. case 4:
|
|
doOtherStuff();
|
|
goto label;
|
|
default:
|
|
break;
|
|
}
|
|
}
|