Files
kotlin-fork/idea/testData/intentions/simplifyBooleanWithConstants/simpleWithMoreBinariesAndParentheses.kt
T

3 lines
88 B
Kotlin

fun foo(y: Boolean) {
false || false || y || y || <caret>false && (y && y || true)
}