12 lines
167 B
Kotlin
Vendored
12 lines
167 B
Kotlin
Vendored
interface Foo
|
|
|
|
fun bar() {
|
|
object : Foo {
|
|
fun foo(): Foo {
|
|
return Derived(42)
|
|
}
|
|
|
|
inner class Derived(val x: Int) : Foo
|
|
}
|
|
}
|