Skip to main content
summaryrefslogtreecommitdiffstats
blob: 3cb495e1b5c6c5d331f565336b4af03ded5f6328 (plain) (blame)
1
2
3
4
5
6
7
8
9
package test1;
public class A {
    public void foo(int i) {
        switch (x) {
            case 1 : return;
            default :
        }
    }
}

Back to the top