blob: e660dbac5859519b358313ef1a572f1a6bdbc9d5 [file] [log] [blame]
package test.pkg;
public final class TryCatchHang {
public void foo() {
try {
getClass().getField("").getInt(null);
}
catch(IllegalAccessException | NoSuchFieldException xc) {
throw new RuntimeException( xc );
}
try {
getClass().getField("").getInt(null);
}
catch (NoSuchFieldException | IllegalAccessException xc) {
throw new RuntimeException( xc );
}
try {
getClass().getField("").getInt(null);
}
catch (IllegalAccessException | NoSuchFieldException xc) {
throw new RuntimeException(xc);
}
}
}