Files
kotlin-fork/compiler/testData/codegen/box/delegatedProperty/delegateToAnother/simple.kt
T
2021-11-26 19:18:25 +01:00

9 lines
110 B
Kotlin
Vendored

// WITH_STDLIB
class C(val x: String)
val x = "O"
val y by ::x
val z by C("K")::x
fun box(): String = y + z