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

6 lines
102 B
Plaintext
Vendored

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