13 lines
197 B
Kotlin
Vendored
13 lines
197 B
Kotlin
Vendored
interface IFooBar {
|
|
fun foo()
|
|
fun bar()
|
|
}
|
|
|
|
object FooBarImpl : IFooBar {
|
|
override fun foo() {}
|
|
override fun bar() {}
|
|
}
|
|
|
|
class C : IFooBar by FooBarImpl {
|
|
override fun bar() {}
|
|
} |