Files
kotlin-fork/idea/testData/inspectionsLocal/replaceNegatedIsEmptyWithIsNotEmpty/notNegateEmpty.kt
T
2020-09-03 14:20:35 +02:00

5 lines
87 B
Kotlin
Vendored

// PROBLEM: none
// WITH_RUNTIME
fun test(s: String) {
val b = s.isEmpty<caret>()
}