mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 08:31:31 +00:00
reading annotations from bytecode
(without fields yet)
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
package test;
|
||||
|
||||
import java.lang.annotation.*;
|
||||
|
||||
@Retention(RetentionPolicy.CLASS)
|
||||
@interface Aaa {
|
||||
}
|
||||
|
||||
class HasAnnotatedMethod {
|
||||
@Aaa
|
||||
public void f() { }
|
||||
}
|
||||
Reference in New Issue
Block a user