Files
kotlin-fork/idea/testData/intentions/simplifyNegatedBinaryExpression/equals.kt
T
Valentin Kipyatkov 94480e3d5c Renamed in test data
2015-04-16 22:00:53 +03:00

4 lines
101 B
Kotlin

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