SLC: add tests about deprecated-hidden property/accessor

^KT-65393
^KTIJ-27244
This commit is contained in:
Jinseong Jeon
2024-02-04 22:42:36 -08:00
committed by teamcity
parent 300369000f
commit 0533c73910
26 changed files with 591 additions and 0 deletions
@@ -0,0 +1,11 @@
public abstract interface TestInterface /* test.pkg.TestInterface*/ {
public abstract int getPNew();// getPNew()
public abstract int getPOld_deprecatedOnSetter();// getPOld_deprecatedOnSetter()
public abstract void setPNew(int);// setPNew(int)
public abstract void setPOld_deprecatedOnGetter(int);// setPOld_deprecatedOnGetter(int)
class DefaultImpls ...
}