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

6 lines
72 B
Kotlin
Vendored

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