4 lines
99 B
Kotlin
4 lines
99 B
Kotlin
// INTENTION_TEXT: Simplify negated '<' expression to '>='
|
|
fun test(n: Int) {
|
|
!(0<caret> < 1)
|
|
} |