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

3 lines
91 B
Plaintext
Vendored

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