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

10 lines
130 B
Plaintext

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