4 lines
105 B
Kotlin
Vendored
4 lines
105 B
Kotlin
Vendored
// INTENTION_TEXT: Simplify negated '!is' expression to 'is'
|
|
fun test(n: Int) {
|
|
<caret>!(0 !is Int)
|
|
} |