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