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