Skip to main content
summaryrefslogtreecommitdiffstats
blob: b74f0706d043f0f87767ff5c6b9878cd8a0c32c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
class A {
    void method() {
	boolean b = false;
	if (true)
	    if (b) {
		return;
	    }
    }
}

Back to the top