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

8 lines
87 B
Plaintext
Vendored

fun foo() {
if (false) bar(2)
else {
bar(1)
}
}
fun bar(i: Int) {}