blob: 73d4d49084754dbedef48ef4477088450df52924 [file] [log] [blame]
package try_out;
import java.io.IOException;
public class A_test462 {
void f() throws IOException{
extracted();
}
protected void extracted() throws IOException {
/*[*/try{
f();
} catch (IOException e){
} finally {
throw new IOException();
}/*]*/
}
}