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