Files
kotlin/compiler/testData/loadJava/compiledJava/annotations/CustomAnnotation.java

16 lines
223 B
Java
Vendored

package test;
public interface CustomAnnotation {
@MyAnnotation(MyEnum.ONE)
public class MyTest {}
public @interface MyAnnotation {
MyEnum value();
}
public enum MyEnum {
ONE
}
}