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
|
2020-11-21 03:17:57 +00:00
|
|
|
* @summary Verify that an anonymous class can contain a static method only if source >= 16
|
2007-12-01 00:00:00 +00:00
|
|
|
* @author maddox
|
|
|
|
*
|
2022-07-29 17:35:22 +00:00
|
|
|
* @compile/fail/ref=AnonStaticMember_2.out --release 15 -XDrawDiagnostics AnonStaticMember_2.java
|
2020-11-21 03:17:57 +00:00
|
|
|
* @compile AnonStaticMember_2.java
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
class AnonStaticMember_2 {
|
|
|
|
Object x = new Object() {
|
|
|
|
static void test() {}
|
|
|
|
};
|
|
|
|
}
|