13 lines
324 B
Java
13 lines
324 B
Java
|
/** /nodynamiccopyright/
|
||
|
* Class to hold annotations for TestElementsAnnotatedWith.
|
||
|
*/
|
||
|
|
||
|
@AnnotatedElementInfo(annotationName="java.lang.SuppressWarnings",
|
||
|
expectedSize=0,
|
||
|
names={})
|
||
|
@Undefined
|
||
|
public class ErroneousAnnotations {
|
||
|
@Undefined
|
||
|
private void foo() {return;}
|
||
|
}
|