summaryrefslogtreecommitdiffstats
path: root/src/test/misc/en/SwitchInTest.java
blob: 8d046651a5ad184dd75ae7a6a1b6ae39c349cf09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package test.misc.en;

public class SwitchInTest {

	public static void main(String[] args) {

		short t = 2;
		switch(t) {
		case -56:
		case 0:
		case 3:
		case 129:
			System.out.println();
		default:
		}
		
	}

}