mirror of
https://github.com/moparisthebest/fernflower
synced 2024-11-15 05:45:01 -05:00
17 lines
278 B
Java
17 lines
278 B
Java
|
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);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|