4 lines
93 B
Kotlin
Vendored
4 lines
93 B
Kotlin
Vendored
// FIX: Replace negated 'is' operation with '!is'
|
|
fun test(n: Int) {
|
|
<caret>!(0 is Int)
|
|
} |