429N/A/*
429N/A * @test /nodynamiccopyright/
429N/A * @bug 6827009
429N/A * @summary Check for non-constant case labels.
429N/A * @compile/fail -source 6 NonConstantLabel.java
610N/A * @compile/fail/ref=NonConstantLabel.out -XDrawDiagnostics NonConstantLabel.java
429N/A */
429N/Aclass NonConstantLabel {
429N/A String m(String s) {
429N/A String fauxConstant = "Goodbye Cruel World";
429N/A switch(s) {
429N/A case "Hello World":
429N/A return(s);
429N/A case fauxConstant:
429N/A return (s + s);
429N/A }
429N/A }
429N/A}