blob: bc8640154fed6f699e08b3dba346e4a948c66d60 [file] [log] [blame]
//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")
}
}