PSI2IR don't copy annotations for properties implemented by delegation

KT-43012
This commit is contained in:
Dmitry Petrov
2020-10-29 14:31:18 +03:00
parent 53004f97b1
commit 08b761ae7a
11 changed files with 324 additions and 2 deletions
@@ -0,0 +1,10 @@
annotation class Ann
interface IFoo {
@Ann val testVal: String
@Ann fun testFun()
@Ann val String.testExtVal: String
@Ann fun String.testExtFun()
}
class DFoo(d: IFoo) : IFoo by d