Files
kotlin-fork/idea/testData/inspectionsLocal/simplifyNegatedBinaryExpression/greaterThan.kt
T

4 lines
88 B
Kotlin
Vendored

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