Files
kotlin/compiler/testData/codegen/bytecodeText/inlineClasses/boxInlineClassInsideElvisWithNullConstant.kt
2018-05-07 15:25:45 +03:00

13 lines
209 B
Kotlin
Vendored

// !LANGUAGE: +InlineClasses
inline class UInt(private val data: Int)
fun f() {
val unull = UInt(1) ?: null
}
// 1 INVOKESTATIC UInt\$Erased.box
// 0 INVOKEVIRTUAL UInt.unbox
// 0 valueOf
// 0 intValue