Files
kotlin/compiler/testData/codegen/bytecodeText/boxingOptimization/safeCallWithElvis.kt
Denis Zharkov 0f5e29df9b tests added
2014-07-15 21:26:53 +04:00

10 lines
144 B
Kotlin

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