mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
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()
|
|
}
|