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