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

13 lines
252 B
Java
Vendored

package test;
public interface CustomAnnotationWithDefaultParameter {
@MyAnnotation(first = "f", second = "s")
public class MyTest {}
public @interface MyAnnotation {
String first();
String second() default("s");
}
}