Files
openide/java/java-tests/testData/codeInsight/overrideImplement/afterMultipleInheritanceWithThrowables.java

16 lines
223 B
Java

interface A {
void a() throws java.io.IOException;
}
interface B {
void a() throws InstantiationException;
}
interface C extends A, B {}
class D implements C {
@Override
public void a() {
}
}