Files
kotlin-fork/idea/testData/intentions/invertIfCondition/isNotEmpty.kt.after
T
2020-02-21 16:39:35 +01:00

10 lines
138 B
Plaintext
Vendored

// WITH_RUNTIME
fun foo(i: Int) {}
fun test(s: String) {
<caret>if (s.isEmpty()) {
foo(2)
} else {
foo(1)
}
}