jdk-24/langtools/test/tools/javac/AnonStaticMember_2.java
Maurizio Cimadamore 7186448cfe 7019631: issues in test headers in b130
Fix to test headers not containing correct bug ID

Reviewed-by: jjg
2011-02-23 14:17:08 +00:00

15 lines
345 B
Java

/*
* @test /nodynamiccopyright/
* @bug 4279339 6969184
* @summary Verify that an anonymous class cannot contain a static method.
* @author maddox
*
* @run compile/fail/ref=AnonStaticMember_2.out -XDrawDiagnostics AnonStaticMember_2.java
*/
class AnonStaticMember_2 {
Object x = new Object() {
static void test() {}
};
}