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 non-constant 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=NonConstantLabel6.out -XDrawDiagnostics -source 6 NonConstantLabel.java |
6150 | 6 |
* @compile/fail/ref=NonConstantLabel.out -XDrawDiagnostics NonConstantLabel.java |
4142 | 7 |
*/ |
8 |
class NonConstantLabel { |
|
9 |
String m(String s) { |
|
10 |
String fauxConstant = "Goodbye Cruel World"; |
|
11 |
switch(s) { |
|
12 |
case "Hello World": |
|
13 |
return(s); |
|
14 |
case fauxConstant: |
|
15 |
return (s + s); |
|
16 |
} |
|
17 |
} |
|
18 |
} |