summaryrefslogtreecommitdiffstats
path: root/test/unit/results/TestClassSwitch.dec
blob: 386a3418ebd0a5dae47c6e4abb11ad690eba1960 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package unit.classes;


public class TestClassSwitch {

   public void testCaseOrder(int var1) {
      switch(var1) {
      case 5:
         System.out.println(5);
      default:
         return;
      case 13:
         System.out.println(13);
      }
   }
}