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

4 lines
99 B
Kotlin
Vendored

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