mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-07-08 00:14:10 +02:00
[svn r82] Fixed: Fall-through switch cases were broken.
This commit is contained in:
10
test/bug42.d
Normal file
10
test/bug42.d
Normal file
@@ -0,0 +1,10 @@
|
||||
module bug42;
|
||||
|
||||
void main() {
|
||||
int i = 2;
|
||||
switch (i) {
|
||||
case 0:
|
||||
case 1:
|
||||
default:
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user