Files
kotlin-fork/idea/testData/intentions/convertNegatedBooleanSequence/complexNegatedSequence.kt
T

3 lines
106 B
Kotlin

fun foo(a: Int, b: Int, c: Int, d: Int) : Boolean {
return !(a == b) && !(b <caret>== c) && !(a < d)
}