Files
kotlin-fork/idea/testData/joinLines/nestedIfs/OuterWithElse.kt.after
T
2014-12-24 14:19:26 +03:00

8 lines
84 B
Plaintext
Vendored

fun foo() {
if (a) {<caret> if (b) foo()
}
else {
bar()
}
}