blob: c613d72291dafac6810bbe509e189849f8cb0446 [file] [log] [blame]
package test;
public interface CustomAnnotation {
@MyAnnotation(MyEnum.ONE)
public class MyTest {}
public @interface MyAnnotation {
MyEnum value();
}
public enum MyEnum {
ONE
}
}