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

7 lines
110 B
Plaintext
Vendored

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