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

7 lines
116 B
Kotlin
Vendored

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