blob: a40d0e9bb2ed33943ec0ed9f962f36835e8e2d24 [file] [log] [blame]
/*
* @test /nodynamiccopyright/
* @bug 5023177
* @summary One can refer static, const static variables from instance initializers of enum
* @author gafter
* @compile/fail/ref=DA1.out -XDrawDiagnostics DA1.java
*/
enum T1 {
;
static int N = 12;
int M = N;
}