KT-43370 ACC_DEPRECATED on property accessors implemented by delegation

This commit is contained in:
Dmitry Petrov
2020-11-17 16:08:00 +03:00
parent 986bdd1099
commit a27c6b77cf
10 changed files with 464 additions and 1 deletions
@@ -0,0 +1,27 @@
interface IFoo {
@Deprecated("")
val prop: String get() = ""
@Deprecated("")
val String.extProp: String get() = ""
}
interface IFoo2 : IFoo
class Delegated(foo: IFoo) : IFoo by foo
class Delegated2(foo2: IFoo2) : IFoo2 by foo2
class DefaultImpl : IFoo
class DefaultImpl2 : IFoo2
class ExplicitOverride : IFoo {
override val prop: String get() = ""
override val String.extProp: String get() = ""
}
class ExplicitOverride2 : IFoo2 {
override val prop: String get() = ""
override val String.extProp: String get() = ""
}