Files
kotlin-fork/idea/testData/intentions/convertNegatedExpressionWithDemorgansLaw/conjunctionNegation2.kt
T
2014-07-10 15:05:18 +04:00

5 lines
135 B
Kotlin
Vendored

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