2014-01-10 19:02:54 +01:00
|
|
|
/** /nodynamiccopyright/
|
|
|
|
* Class to hold annotations for TestElementsAnnotatedWith.
|
|
|
|
*/
|
|
|
|
|
2018-07-25 12:32:59 -07:00
|
|
|
import annot.AnnotatedElementInfo;
|
|
|
|
|
2014-01-10 19:02:54 +01:00
|
|
|
@AnnotatedElementInfo(annotationName="java.lang.SuppressWarnings",
|
|
|
|
expectedSize=0,
|
|
|
|
names={})
|
|
|
|
@Undefined
|
|
|
|
public class ErroneousAnnotations {
|
|
|
|
@Undefined
|
|
|
|
private void foo() {return;}
|
|
|
|
}
|