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

4 lines
96 B
Kotlin
Vendored

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