Load annotations on constructors and parameters of Kotlin reflected classes
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
//ALLOW_AST_ACCESS
|
||||
package test
|
||||
|
||||
annotation class A(val s: String)
|
||||
|
||||
class Outer {
|
||||
class Nested([A("nested")] val x: String)
|
||||
|
||||
inner class Inner([A("inner")] val y: String)
|
||||
}
|
||||
Reference in New Issue
Block a user