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

5 lines
109 B
Plaintext
Vendored

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