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

3 lines
82 B
Kotlin
Vendored

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