Files
kotlin-fork/nj2k/testData/newJ2k/switch/nestedSwitch.java
T
2019-04-03 11:24:19 +03:00

16 lines
328 B
Java
Vendored

//method
public String foo(int i, int j) {
switch (i) {
case 0:
switch (j) {
case 1:
return "0, 1";
default:
return "0, x";
}
case 1:
return "1, x";
default:
return "x, x";
}
}