Files
kotlin/compiler/testData/codegen/bytecodeText/inlineClasses/unboxMethodCalledByInlineClass.kt
2019-06-13 12:25:06 +02:00

12 lines
248 B
Kotlin
Vendored

// !LANGUAGE: +InlineClasses
// FILE: Z.kt
inline class Z(val x: Int)
// FILE: Test.kt
fun test(xs: List<Z>) = xs[0]
// @TestKt.class:
// 0 INVOKEVIRTUAL Z\$Erased\.unbox
// 0 INVOKEVIRTUAL Z\-Erased\.unbox
// 1 INVOKEVIRTUAL Z\.unbox-impl \(\)I