blob: 5ab2be7ce88871e545b7f1e6ef25454864afe116 [file] [log] [blame]
package locals_in;
public class A_test527 {
public volatile boolean flag;
protected void foo() {
int i= 0;
/*[*/try {
if (flag)
throwException();
i= 10;
} catch (Exception e) {
}/*]*/
read(i);
}
private void read(int i) {
}
private void throwException() throws Exception {
throw new Exception();
}
}