blob: a3f81bc2a17af18f1f3b9b58bf0b0d984afec006 [file] [log] [blame]
package locals_out;
public class A_test560 {
public boolean flag;
public void foo() {
int x= 0;
while (x < 10) {
/*]*/x = extracted();/*[*/
}
}
protected int extracted() {
int x;
x= 20;
return x;
}
}