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

5 lines
111 B
Plaintext
Vendored

// INTENTION_TEXT: Replace '||' with '&&'
fun foo(a: Boolean, b: Boolean) : Boolean {
return !(!a && !b)
}