468N/A/*
468N/A * @test /nodynamiccopyright/
468N/A * @bug 6567414
468N/A * @summary javac compiler reports no source file or line on enum constant declaration error
468N/A * @compile/fail/ref=T6567414.out -XDrawDiagnostics T6567414.java
468N/A */
468N/Aenum Test {
468N/A FOO;
468N/A Test() throws Exception {}
468N/A}
468N/A