blob: 121eb4d297085f02c68ef781af431a1d9a93ca36 [file] [log] [blame]
/*
* @test /nodynamiccopyright/
* @bug 6827009
* @summary Check for case labels of different types.
* @compile/fail -source 6 BadlyTypedLabel1.java
* @compile/fail/ref=BadlyTypedLabel1.out -XDstdout -XDrawDiagnostics BadlyTypedLabel1.java
*/
class BadlyTypedLabel1 {
String m(String s) {
switch(s) {
case "Hello World":
return(s);
case 42:
return ("Don't forget your towel!");
}
}
}