blob: 3458c3e9c4eac53f01bfce022a2f2a98e1faf422 [file] [log] [blame]
class B extends A {
public B() {
super(1);
}
public B(int i) {
super(i);
}
}