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

10 lines
141 B
Kotlin
Vendored

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