Files
kotlin-fork/idea/testData/intentions/simplifyNegatedBinaryExpression/notIs.kt
T
2015-05-14 01:10:08 +03:00

4 lines
105 B
Kotlin
Vendored

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