2009-11-03 05:36:59 +00:00
|
|
|
/*
|
|
|
|
* @test /nodynamiccopyright/
|
|
|
|
* @bug 6827009
|
|
|
|
* @summary Check for non-constant case labels.
|
2010-07-26 21:18:45 +00:00
|
|
|
* @compile/fail/ref=NonConstantLabel.out -XDrawDiagnostics NonConstantLabel.java
|
2009-11-03 05:36:59 +00:00
|
|
|
*/
|
|
|
|
class NonConstantLabel {
|
|
|
|
String m(String s) {
|
|
|
|
String fauxConstant = "Goodbye Cruel World";
|
|
|
|
switch(s) {
|
|
|
|
case "Hello World":
|
|
|
|
return(s);
|
|
|
|
case fauxConstant:
|
|
|
|
return (s + s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|