author | prr |
Fri, 25 May 2018 12:12:24 -0700 | |
changeset 50347 | b2f046ae8eb6 |
parent 47216 | 71c04702a3d5 |
child 50949 | 999f09bf3464 |
permissions | -rw-r--r-- |
4142 | 1 |
/* |
2 |
* @test /nodynamiccopyright/ |
|
3 |
* @bug 6827009 |
|
4 |
* @summary Check for repeated string case labels. |
|
30715
099641abfb05
8074387: Group 11: golden files for coin tests in tools/javac dir
sogoel
parents:
6150
diff
changeset
|
5 |
* @compile/fail/ref=RSCL2_6.out -XDrawDiagnostics -source 6 RepeatedStringCaseLabels2.java |
6150 | 6 |
* @compile/fail/ref=RSCL2.out -XDrawDiagnostics RepeatedStringCaseLabels2.java |
4142 | 7 |
*/ |
8 |
class RepeatedStringCaseLabels2 { |
|
9 |
String m(String s) { |
|
10 |
final String constant = "Hello" + " " + "World"; |
|
11 |
switch(s) { |
|
12 |
case "Hello World": |
|
13 |
return(s); |
|
14 |
case constant: |
|
15 |
return (s + s); |
|
16 |
} |
|
17 |
} |
|
18 |
} |