blob: a7af811b7a3548b44bc7d2fedcc0a8569c298ec3 [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=DA2.out -XDrawDiagnostics DA2.java
*/
enum T2 {
;
static int N = 12;
{
int M = N;
}
}