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

4 lines
101 B
Kotlin
Vendored

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