mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-22 12:04:39 +02:00
14 lines
274 B
Java
14 lines
274 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 4994049
|
|
* @summary Improved diagnostics while parsing enums
|
|
* @author Peter von der Ah\u00e9
|
|
* @compile/fail/ref=T4994049.out -XDstdout -XDrawDiagnostics T4994049.java
|
|
*/
|
|
|
|
public enum T4994049 {
|
|
FOO {
|
|
}
|
|
|
|
BAR;
|
|
}
|