Files
kotlin-fork/idea/testData/intentions/invertIfCondition/isBlank.kt
T
2020-09-03 14:20:35 +02:00

10 lines
138 B
Kotlin
Vendored

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