blob: f1f3b0ff95aabb5d2d61bb5d4f98d9fc97c19f88 [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];/*]*/
}
}