mirror of
https://github.com/moparisthebest/fernflower
synced 2024-10-31 23:45:08 -04:00
15 lines
248 B
Plaintext
15 lines
248 B
Plaintext
package pkg;
|
|
|
|
public class TestClassSwitch {
|
|
public void testCaseOrder(int var1) {
|
|
switch(var1) {
|
|
case 5:
|
|
System.out.println(5);
|
|
default:
|
|
return;
|
|
case 13:
|
|
System.out.println(13);
|
|
}
|
|
}
|
|
}
|