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

3 lines
90 B
Kotlin
Vendored

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