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

17 lines
235 B
Java

import java.io.*;
interface A {
void close() throws Exception;
}
interface B {
void close() throws IOException;
}
interface C<T extends Exception> {
void close() throws T;
}
interface AB extends A, C, B {
<caret>
}