blob: 522403c0843abcb49a9b07f3a87f9322933bb9c9 [file] [log] [blame]
import java.io.IOException;
class Base {
public Base() throws IOException {
}
}
class AAA extends Base {
public AAA() {
super();
}
}