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