mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
16 lines
223 B
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() {
|
|
|
|
}
|
|
} |