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