Files
openide/java/java-tests/testData/refactoring/changeSignature/ConstructorException_after.java

12 lines
146 B
Java

import java.io.IOException;
class Base {
public Base() throws IOException {
}
}
class AAA extends Base {
public AAA() {
super();
}
}