blob: 2b79ca241d8834aaffc9c96cba06540edc900591 [file] [log] [blame]
package p;
import java.io.IOException;
public class Foo {
public static void foo() throws IOException, ArrayIndexOutOfBoundsException {
}
void foo2() throws Exception {
foo(); // <- invoke here
}
}