Files
kotlin-fork/compiler/testData/codegen/bytecodeText/boxingOptimization/safeCallWithElvis.kt
T
2021-09-29 19:14:32 +03:00

10 lines
144 B
Kotlin
Vendored

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