addb048ce9
This is to align the behavior with K1. ^KT-57754 Fixed Co-authored-by: Alexander Udalov <alexander.udalov@jetbrains.com>
17 lines
329 B
Kotlin
Vendored
17 lines
329 B
Kotlin
Vendored
interface IFoo {
|
|
@Deprecated("")
|
|
val prop: String get() = ""
|
|
|
|
@Deprecated("")
|
|
val String.extProp: String get() = ""
|
|
}
|
|
|
|
class Delegated(foo: IFoo) : IFoo by foo
|
|
|
|
class DefaultImpl : IFoo
|
|
|
|
class ExplicitOverride : IFoo {
|
|
override val prop: String get() = ""
|
|
override val String.extProp: String get() = ""
|
|
}
|