Files
openide/java/java-tests/testData/refactoring/changeSignaturePropagation/ExceptionWithNoConstructor.java.after

10 lines
129 B
Plaintext

public class P {
public P() throws Exception {
}
}
class PP extends P {
PP() throws Exception {
super();
}
}