Files
kotlin-fork/idea/testData/intentions/convertBinaryExpressionWithDemorgansLaw/complexNegation2.kt
T
2017-06-28 15:28:43 +03:00

3 lines
99 B
Kotlin
Vendored

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