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