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