addb048ce9
This is to align the behavior with K1. ^KT-57754 Fixed Co-authored-by: Alexander Udalov <alexander.udalov@jetbrains.com>
14 lines
198 B
Kotlin
Vendored
14 lines
198 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() {}
|
|
}
|