mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 02:43:14 +01:00
16 lines
171 B
D
16 lines
171 B
D
module tangotests.switch2;
|
|
|
|
void main()
|
|
{
|
|
int i=0;
|
|
switch(i)
|
|
{
|
|
case 0:
|
|
return;
|
|
case 1:
|
|
return;
|
|
default:
|
|
assert(0);
|
|
}
|
|
}
|