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=RSCL1.out -XDrawDiagnostics RepeatedStringCaseLabels1.java
|
2009-11-03 05:36:59 +00:00
|
|
|
*/
|
|
|
|
class RepeatedStringCaseLabels1 {
|
|
|
|
String m(String s) {
|
|
|
|
switch(s) {
|
|
|
|
case "Hello World":
|
|
|
|
return(s);
|
|
|
|
case "Hello" + " " + "World":
|
|
|
|
return (s + s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|