Files
kotlin-fork/compiler/testData/codegen/box/delegatedProperty/delegateToConstructorParameter.kt
T

9 lines
110 B
Kotlin
Vendored

// WITH_RUNTIME
class C(val x: String)
class D(c: C) {
val x by c::x
}
fun box(): String = D(C("OK")).x