blob: 721340e19e0c44af0f2404670b7fa2ef9408fdd2 [file] [log] [blame]
package try_out;
import java.io.IOException;
public class A_test457 {
public void foo() {
Exception[] e= new Exception[] { new IOException("Message") };
try {
/*]*/extracted(e);/*[*/
} catch (Exception x) {
}
}
protected void extracted(Exception[] e) throws Exception {
throw e[0];
}
}