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.
10 lines
236 B
Java
10 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;}
|
|
}
|