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

4 lines
100 B
Kotlin
Vendored

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