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.
11 lines
263 B
Java
11 lines
263 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 6567414
|
|
* @summary javac compiler reports no source file or line on enum constant declaration error
|
|
* @compile/fail/ref=T6567414.out -XDrawDiagnostics T6567414.java
|
|
*/
|
|
enum Test {
|
|
FOO;
|
|
Test() throws Exception {}
|
|
}
|
|
|