mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
18 lines
246 B
Kotlin
Vendored
18 lines
246 B
Kotlin
Vendored
// !LANGUAGE: +InlineClasses
|
|
|
|
// FILE: Z.kt
|
|
inline class Z(val value: Int)
|
|
|
|
// FILE: test.kt
|
|
data class Data(val z1: Z, val z2: Z)
|
|
|
|
inline class Inline(val z: Z)
|
|
|
|
// @Data.class:
|
|
// 0 Z.box
|
|
// 0 Z.unbox
|
|
|
|
// @Inline.class:
|
|
// 0 Z.box
|
|
// 0 Z.unbox
|