blob: bbe1e30338ac0b4541a6a690e75b2a4c98fce407 [file] [log] [blame]
import java.lang.annotation.Annotation;
public @interface Foo {
String id();
}
class Bar implements Foo {
public String id() {
return null;
}
public Class<? extends Annotation> annotationType() {
return null;
}
}