I'm novice groovy programmer, and I faced weird behaviour of switch-case-break statement with static compilation (@CompileStatic
annotation). It seems that break
s are ignored.
Is it a bug or I've missed something while reading documentation.
Environment:
- groovy sdk 2.1.0
- Oracle JDK build 1.7.0_13-b20 on Mac OS X Lion 10.7.5
Test case:
import groovy.transform.CompileStatic
@CompileStatic
class Test {
def test() {
['A', 'B', 'C'].each { String val ->
switch (val) {
case 'A' :
println("${val} caseA")
break
case 'B' :
println("${val} caseB")
break
default :
println("${val} default")
}
}
}
}
(new Test()).test()
Output:
A caseA
A caseB
A default
B caseB
B default
C default
Second test: just comment @CompileStatic
And everithing works fine:
A caseA
B caseB
C default