blob: 8b66b898f9acab5080f2eda82e4972cf7701e3fb [file] [log] [blame]
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>
}