• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 
2 class Blort {
3 
testMultipleIdenticalSuccessors(int foo)4     void testMultipleIdenticalSuccessors(int foo) {
5         switch(foo) {
6             case 1:
7             case 2:
8             case 3:
9                 System.out.println("foo");
10             break;
11         }
12     }
13 
testNoPrimarySuccessor()14     void testNoPrimarySuccessor() {
15         try {
16             throw new RuntimeException();
17         } catch (RuntimeException ex){
18         }
19     }
20 }
21