blob: b0d2ba8d1518708aded1fb9cbd2a6d6bfca5f024 [file] [log] [blame]
public class ClassWithAnnotationAncestor implements SuppressWarnings {
public String testMethod() {
return "result";
}
@Override
public String[] value() {
return new String[0];
}
@Override
public Class<? extends Annotation> annotationType() {
return null;
}
}