jdk-24/langtools/test/tools/javac/enum/EnumSwitch2.java
Srikanth Adayapalam 60841ee270 8050021: Improper "duplicate case label" error
Reviewed-by: jlahoda
2015-03-12 10:24:07 +05:30

21 lines
397 B
Java

/*
* @test /nodynamiccopyright/
* @bug 4936393 8050021
* @summary enum switch case labels required to be unqualified.
* @author gafter
* @compile/fail/ref=EnumSwitch2.out -XDrawDiagnostics EnumSwitch2.java
*/
enum E1 { a, b, c, d, e }
class EnumSwitch2 {
void f(E1 e1) {
switch (e1) {
case E1.a:
case E1.d:
default:
break;
}
}
}