summaryrefslogtreecommitdiffstats
path: root/test/unit/classes/TestClassSwitch.java
blob: 3e29d5e2c36be0ad5d274147d91facf4ea503bda (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 a) {
    	
        switch(a) {
            case 13:
            	System.out.println(13);
            	return;
            case 5:
                System.out.println(5);
        }
    }
	
}