Files
kotlin-fork/compiler/testData/cfg/lastElvis.kt
T
Andrey Breslav 4ca90e9c68 Proper instructions for elvis operator
We should not mark elvis operator unused, for the rhs may have desired side-effects
2013-12-05 13:28:41 +04:00

3 lines
33 B
Kotlin

fun test(a: Any?) {
a ?: ""
}