NoStaticAbstract.java 249 字节
Newer Older
1 2 3 4 5 6 7 8 9 10
/*
 * @test /nodynamiccopyright/
 * @bug 8022322
 * @summary Static methods are not allowed in an annotation.
 * @compile/fail/ref=NoStaticAbstract.out -XDrawDiagnostics NoStaticAbstract.java
 */

@interface NoStaticAbstract {
    static int m();
}