summaryrefslogtreecommitdiff
path: root/plugins/kotlin/idea/tests/testData/intentions/simplifyBooleanWithConstants/notReduceableBinary2.kt
blob: 79340b5e40f77dfcda661d0a458bd3d63b6e48eb (plain)
1
2
3
4
5
// AFTER-WARNING: Parameter 'v' is never used
fun test() {
    foo(false || !true) + foo(<caret>false || !true)
}
fun foo(v: Boolean): Int = 1