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

4 lines
84 B
Kotlin
Vendored

fun test() {
foo(<caret>false || !true) ?: return
}
fun foo(v: Boolean): Int = 1