Files
kotlin/compiler/testData/compileJavaAgainstKotlin/method/Delegation.kt
2015-05-12 19:43:17 +02:00

13 lines
168 B
Kotlin
Vendored

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