JavaCompilerCore/bin/mycompiler/test/blocks/TestSwitchStmt.jav

11 lines
149 B
Plaintext
Raw Normal View History

2013-10-18 11:33:46 +00:00
public class TestSwitchStmt {
public m(a) {
switch (a) {
case 1: return a++; break;
case 2: return a--; break;
default: return a;
}
}