7b43d5c972
#KT-27556 Fixed
8 lines
152 B
Kotlin
Vendored
8 lines
152 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
// FIX: Replace negated 'isEmpty' with 'isNotEmpty'
|
|
|
|
fun test() {
|
|
val list = listOf(1,2,3)
|
|
if (!list.<caret>isEmpty()) {
|
|
}
|
|
} |