2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2020-12-30 17:20:54 +00:00
|
|
|
* @test /nodynamiccopyright/
|
2007-12-01 00:00:00 +00:00
|
|
|
* @bug 4279339
|
2020-11-21 03:17:57 +00:00
|
|
|
* @summary Verify that an anonymous class can contain a static field 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_1.out --release 15 -XDrawDiagnostics AnonStaticMember_1.java
|
2020-11-21 03:17:57 +00:00
|
|
|
* @compile AnonStaticMember_1.java
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
class AnonStaticMember_1 {
|
|
|
|
Object x = new Object() {
|
|
|
|
static int y;
|
|
|
|
};
|
|
|
|
}
|