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

3 lines
93 B
Kotlin

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