Files
kotlin-fork/idea/testData/inspectionsLocal/replaceNegatedIsEmptyWithIsNotEmpty/notNegate.kt
T
2019-03-06 11:06:40 +03:00

5 lines
87 B
Kotlin
Vendored

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