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

6 lines
80 B
Plaintext
Vendored

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