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