PSI2IR don't copy annotations for properties implemented by delegation
KT-43012
This commit is contained in:
+10
@@ -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
|
||||
Reference in New Issue
Block a user