mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
17 lines
235 B
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>
|
|
}
|