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

9 lines
92 B
Kotlin
Vendored

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