6b35c06d50
#KT-30123 Fixed
6 lines
179 B
Kotlin
Vendored
6 lines
179 B
Kotlin
Vendored
// PROBLEM: Replace negated 'isEmpty' with 'isNotEmpty'
|
|
// FIX: Replace negated 'isEmpty' with 'isNotEmpty'
|
|
// WITH_RUNTIME
|
|
fun test(s: String) {
|
|
val b = !s.isEmpty<caret>()
|
|
} |