Files
kotlin/compiler/testData/readJavaBinaryClass/annotation/AnnotatedMethod.kt
Stepan Koltsov aacf63ff6f reading annotations from bytecode
(without fields yet)
2012-02-21 20:16:11 +04:00

8 lines
103 B
Kotlin

package test
annotation class Aaa
open class HasAnnotatedMethod() {
open Aaa fun f(): Unit { }
}