Files
kotlin-fork/idea/testData/inspectionsLocal/simplifyNegatedBinaryExpression/is.kt
T
2017-12-26 18:39:51 +03:00

4 lines
93 B
Kotlin
Vendored

// FIX: Replace negated 'is' operation with '!is'
fun test(n: Int) {
<caret>!(0 is Int)
}