Files
kotlin-fork/compiler/testData/codegen/regressions/kt2786.kt
T
2012-09-20 17:54:40 +03:00

14 lines
251 B
Kotlin

trait FooTrait {
val propertyTest: String
}
class FooDelegate: FooTrait {
override val propertyTest: String = "OK"
}
class DelegateTest(): FooTrait by FooDelegate() {
fun test() = propertyTest
}
fun box() = DelegateTest().test()