Files
kotlin/compiler/testData/loadJava/compiledKotlin/fun/DeclaredMemberOverridesDelegated.kt
2013-12-17 20:28:59 +04:00

14 lines
123 B
Kotlin

package test
trait X {
fun foo()
}
trait Y : X {
}
class B(val a: X) : X by a, Y {
override fun foo() {
}
}