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