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