71604851fe
This currently leads to a compilation error due to metadata generation.
12 lines
132 B
Kotlin
Vendored
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()
|
|
}
|