blob: 70d30f52077cf8b9ec3a818cc827ca099c2396f9 [file] [log] [blame]
package test;
public interface RecursiveAnnotation2 {
public @interface A {
B value();
}
@A(@B("test"))
public @interface B {
String value();
}
}