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

6 lines
108 B
Kotlin
Vendored

fun foo(b: Boolean) {
<caret>if (b) bar(1) // comment1
else bar(2) // comment2
}
fun bar(i: Int) {}