summaryrefslogtreecommitdiff
path: root/plugins/kotlin/idea/tests/testData/intentions/simplifyBooleanWithConstants/reduceableBinary.kt
blob: 1672fdc4251925b0bebcade8b285ea8fe0c47fb4 (plain)
1
2
3
4
5
6
// LANGUAGE_VERSION: 1.6
// AFTER-WARNING: Parameter 'y' is never used
// AFTER-WARNING: The expression is unused
fun foo(y: Boolean) {
    <caret>2 > 1
}