summaryrefslogtreecommitdiff
path: root/plugins/kotlin/idea/tests/testData/intentions/simplifyBooleanWithConstants/reduceableBinaryWithParenthese.kt
blob: d84e118b653b1ccc31aaf2d2ec2fe9afffcad960 (plain)
1
2
3
4
5
// AFTER-WARNING: Parameter 'y' is never used
fun foo(y: Boolean) {
    val x = 3
    <caret>x != x && (2 > 1 || y)
}