blob: e123539986ad6a76995d02902fec91169b0c11b3 [file] [log] [blame]
package trycatch_in;
import java.net.MalformedURLException;
public class TestSuperConstructorCall {
static class A {
public A(int i) throws MalformedURLException {
}
}
static class B extends A {
public B() {
super(10);
}
}
}