Authors: russell@unturf.com · brackishbert@gmail.com · foxhop.net · TimeHexOn.com Patches, unit tests, benchmarks, whitepaper, and outreach briefs. Public domain — no copyright claimed. Use freely.
13 lines
277 B
Java
13 lines
277 B
Java
/*
|
|
* @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;
|
|
}
|