Files
kotlin-fork/compiler/testData/codegen/box/properties/kt2786.kt
T
2015-05-12 19:43:17 +02:00

14 lines
255 B
Kotlin
Vendored

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()