Files
kotlin/compiler/testData/compileJavaAgainstKotlin/method/Delegation.kt
2014-03-19 23:24:27 +04:00

13 lines
164 B
Kotlin

package test
trait Trait {
fun foo()
val bar: Int
}
class Impl: Trait {
override fun foo() {}
override val bar = 1
}
class Test : Trait by Impl()