mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
11 lines
106 B
D
11 lines
106 B
D
module bug42;
|
|
|
|
void main() {
|
|
int i = 2;
|
|
switch (i) {
|
|
case 0:
|
|
case 1:
|
|
default:
|
|
}
|
|
}
|