2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2011-02-03 09:38:19 +00:00
|
|
|
* @test /nodynamiccopyright/
|
2011-02-23 14:17:08 +00:00
|
|
|
* @bug 4279339 6969184
|
2007-12-01 00:00:00 +00:00
|
|
|
* @summary Verify that an anonymous class cannot contain a static method.
|
|
|
|
* @author maddox
|
|
|
|
*
|
2011-02-03 09:38:19 +00:00
|
|
|
* @run compile/fail/ref=AnonStaticMember_2.out -XDrawDiagnostics AnonStaticMember_2.java
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
class AnonStaticMember_2 {
|
|
|
|
Object x = new Object() {
|
|
|
|
static void test() {}
|
|
|
|
};
|
|
|
|
}
|