Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: 20f0a927e4c9789ab72ce2387e18406f21c8e8d9 (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