mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
10 lines
242 B
Kotlin
Vendored
10 lines
242 B
Kotlin
Vendored
// !LANGUAGE: +InlineClasses
|
|
// FILE: test.kt
|
|
inline class A(val x: String)
|
|
class B(val y: A)
|
|
|
|
fun box() =
|
|
B(A("OK")).y.x
|
|
|
|
// @TestKt.class:
|
|
// 1 INVOKESPECIAL B.<init> \(Ljava/lang/String;Lkotlin/jvm/internal/DefaultConstructorMarker;\)V |