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