mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-29 16:50:55 +07:00
18 lines
274 B
Java
18 lines
274 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 {
|
|
@Override
|
|
void close() throws IOException;
|
|
}
|