mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
13 lines
274 B
Kotlin
Vendored
13 lines
274 B
Kotlin
Vendored
// !LANGUAGE: +InlineClasses
|
|
// IGNORE_BACKEND: JVM_IR
|
|
|
|
// 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 |