blob: 1e21675bc435dba451ef2a84d424a01bacbb1459 [file] [log] [blame]
package locals_out;
public class A_test556 {
public boolean flag;
public void foo() {
int x= 0;
while (true) {
for (int y= 0; true; y= x) {
/*]*/x= extracted();/*[*/
}
}
}
protected int extracted() {
int x;
x= 20;
return x;
}
}