blob: 7419181df872642498d33aedfc75bc5b2eaf2307 [file] [log] [blame]
package test;
public interface CustomAnnotationWithDefaultParameter {
@MyAnnotation(first = "f", second = "s")
public class MyTest {}
public @interface MyAnnotation {
String first();
String second() default("s");
}
}