Files
kotlin-fork/idea/testData/intentions/invertIfCondition/notBlock2.kt.after
T

7 lines
88 B
Plaintext
Vendored

fun foo(i: Int): Int {
return if (i <= 0)
i + 1
else {
i
}
}