Load annotations on constructors and parameters of Kotlin reflected classes

This commit is contained in:
Alexander Udalov
2015-03-02 13:33:38 +03:00
parent 4fb420f3f1
commit 1054f004aa
8 changed files with 111 additions and 11 deletions
@@ -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)
}