Files
kotlin/compiler/testData/codegen/bytecodeText/boxingOptimization/safeCallWithElvis.kt
2018-12-21 16:20:45 +01:00

11 lines
170 B
Kotlin
Vendored

// IGNORE_BACKEND: JVM_IR
class A(val x : Int, val y : A?)
fun check(a : A?) : Int {
return a?.y?.x ?: (a?.x ?: 3)
}
// 0 valueOf
// 0 Value\s\(\)
// 0 ACONST_NULL