Files
kotlin-fork/compiler/testData/codegen/box/properties/kt2786.kt
T
2023-12-26 10:18:19 +00:00

15 lines
287 B
Kotlin
Vendored

// JVM_ABI_K1_K2_DIFF: KT-63828
interface FooTrait {
val propertyTest: String
}
class FooDelegate: FooTrait {
override val propertyTest: String = "OK"
}
class DelegateTest(): FooTrait by FooDelegate() {
fun test() = propertyTest
}
fun box() = DelegateTest().test()