Files
kotlin-fork/idea/testData/intentions/invertIfCondition/notBlock8.kt
T
2019-04-22 15:59:49 +07:00

7 lines
89 B
Kotlin
Vendored

fun foo() {
<caret>if (true) {
bar(1)
} else bar(2)
}
fun bar(i: Int) {}