blob: 8b3602f255373ef8158a04c4b675e535af6ee516 [file] [log] [blame]
class Blort {
void testMultipleIdenticalSuccessors(int foo) {
switch(foo) {
case 1:
case 2:
case 3:
System.out.println("foo");
break;
}
}
void testNoPrimarySuccessor() {
try {
throw new RuntimeException();
} catch (RuntimeException ex){
}
}
}