aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs152/pr148545/MyAnnotation.java
blob: 309275641e71d47c09026f3ebbfc615a20a2c955 (plain)
1
2
3
4
5
6
7
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

@Retention(RetentionPolicy.RUNTIME)
public @interface MyAnnotation {
        MyEnum[] value();
}