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

5 lines
116 B
Kotlin
Vendored

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