aboutsummaryrefslogtreecommitdiffstats
path: root/tests/errors/Switch.java
blob: 404db1d8030f83e1bdbe9b6a715f3d7422a8943d (plain)
1
2
3
4
5
6
7
8
public class Switch {
    public void m() {
        switch(2) {
            int j = 0;
        case 1:
        }
    }
}