blob: 20f0a927e4c9789ab72ce2387e18406f21c8e8d9 [file] [log] [blame]
class A {
void method() {
boolean b = false;
if (true)
if (b) {
return;
}
}
}