summaryrefslogtreecommitdiff
path: root/plugins/kotlin/idea/tests/testData/intentions/simplifyBooleanWithConstants/notReduceableBinary.kt.after
blob: 27bc5aa28749e692eb874719dfaa50190ed55efc (plain)
1
2
3
4
5
6
7
// LANGUAGE_VERSION: 1.6
// AFTER-WARNING: Elvis operator (?:) always returns the left operand of non-nullable type Int
// AFTER-WARNING: Parameter 'v' is never used
fun test() {
    foo(false) ?: return
}
fun foo(v: Boolean): Int = 1