blob: 80118cc75ff5c15ce8a501a8d09d85967f23fe1d [file] [log] [blame]
package test;
public interface RecursiveAnnotation {
@B(@A("test"))
public @interface A {
String value();
}
@B(@A("test"))
public @interface B {
A value();
}
}