Files
kotlin/compiler/testData/loadJava/compiledKotlin/classObject/Delegation.kt
2015-05-12 19:43:17 +02:00

12 lines
132 B
Kotlin
Vendored

package test
interface T {
fun foo(): Int
}
class A : T {
override fun foo(): Int = 42
companion object : T by A()
}