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

10 lines
139 B
Kotlin
Vendored

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