mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 02:43:14 +01:00
22 lines
286 B
D
22 lines
286 B
D
module tangotests.switch3;
|
|
|
|
void main()
|
|
{
|
|
int i = 2;
|
|
|
|
switch(i)
|
|
{
|
|
case 0,1,4,5,6,7,8,9:
|
|
assert(0);
|
|
case 2:
|
|
return;
|
|
case 3:
|
|
{
|
|
i++;
|
|
case 11:
|
|
i++;
|
|
}
|
|
return;
|
|
}
|
|
}
|