jdk-24/langtools/test/tools/javac/annotations/neg/NoAnnotationMethods.java
2014-08-12 17:31:31 -07:00

12 lines
322 B
Java

/*
* @test /nodynamiccopyright/
* @bug 6393539
* @summary no compile-time error for clone, etc. in annotation type
* @author Peter von der Ah\u00e9
* @compile/fail/ref=NoAnnotationMethods.out -XDrawDiagnostics NoAnnotationMethods.java
*/
public @interface NoAnnotationMethods {
int annotationType();
}