Files
kotlin-fork/idea/testData/inspectionsLocal/simplifyNegatedBinaryExpression/notIs.kt
T

4 lines
94 B
Kotlin
Vendored

// FIX: Simplify negated '!is' expression to 'is'
fun test(n: Int) {
<caret>!(0 !is Int)
}