Authors: russell@unturf.com · brackishbert@gmail.com · foxhop.net · TimeHexOn.com Patches, unit tests, benchmarks, whitepaper, and outreach briefs. Public domain — no copyright claimed. Use freely.
14 lines
360 B
Java
14 lines
360 B
Java
/** /nodynamiccopyright/
|
|
* Class to hold annotations for TestElementsAnnotatedWith.
|
|
*/
|
|
|
|
import annot.AnnotatedElementInfo;
|
|
|
|
@AnnotatedElementInfo(annotationName="java.lang.SuppressWarnings",
|
|
expectedSize=0,
|
|
names={})
|
|
@Undefined
|
|
public class ErroneousAnnotations {
|
|
@Undefined
|
|
private void foo() {return;}
|
|
}
|