Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.0-JSR-2
-
None
Description
If I stack several case branches to be handled by the same statements I get an parser error: Unkown type: "case"
Example:
switch(1) {
case 1:
case 2:
println "1 or 2"
break
}