JavaPatternMatching/bin/mycompiler/test/blocks/TestSwitchStmt.jav
2013-10-18 13:33:46 +02:00

11 lines
149 B
Java
Executable File

public class TestSwitchStmt {
public m(a) {
switch (a) {
case 1: return a++; break;
case 2: return a--; break;
default: return a;
}
}