Files
kotlin-fork/j2k/tests/testData/ast/ifStatement/elseIf.java
T
2014-07-10 23:20:37 +04:00

16 lines
232 B
Java

//method
void foo() {
if (a)
System.out.println("a")
else if (b)
System.out.println("b")
else
System.out.println("else")
if (c) {
System.out.println("c")
}
else if (d) {
System.out.println("d")
}
}