Files
kotlin-fork/compiler/testData/loadJava/compiledKotlin/classObject/Delegation.kt
T
2019-05-29 13:10:47 +02:00

13 lines
158 B
Kotlin
Vendored

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