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