Fork of the Fernflower decompiler
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.
fernflower/test/test/misc/en/SwitchInTest.java

19 lines
217 B

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:
}
}
}