13 lines
158 B
Kotlin
Vendored
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()
|
|
}
|