mirror of
https://hub.spigotmc.org/stash/scm/spigot/fernflower.git
synced 2025-09-18 22:14:39 +00:00
16 lines
259 B
Text
16 lines
259 B
Text
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);
|
|
}
|
|
}
|
|
}
|