jdk-24/test/langtools/tools/javac/annotations/neg/NoStatic.java
2017-09-12 19:03:39 +02:00

11 lines
236 B
Java

/*
* @test /nodynamiccopyright/
* @bug 8022322
* @summary Static methods are not allowed in an annotation.
* @compile/fail/ref=NoStatic.out -XDrawDiagnostics NoStatic.java
*/
@interface NoStatic {
static int m() {return 0;}
}