Skip to main content
summaryrefslogtreecommitdiffstats
blob: d6b9f44f87f570db943b9ab209f1628f94685138 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package test1;
public class E {
    public void foo() {
        if (i == 0) {
            System.beep();
        } else if (true) {
            return;
        }

        if (i == 0) {
            System.beep();
        }
        if (i == 0) {
            System.beep();
        } else if (true)
            return;

        if (i == 0) {
            System.beep();
        }
    }
}

Back to the top