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