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

10 lines
141 B
Plaintext
Vendored

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