You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
378 B
21 lines
378 B
7 months ago
|
|
||
|
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){
|
||
|
}
|
||
|
}
|
||
|
}
|