mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
20 lines
423 B
Java
20 lines
423 B
Java
|
|
import java.io.FileNotFoundException;
|
|
import java.io.IOException;
|
|
|
|
class Outer {
|
|
private interface IA {
|
|
void print() throws FileNotFoundException, IOException;
|
|
}
|
|
|
|
private static class A {
|
|
public void print() throws FileNotFoundException, IOException {
|
|
}
|
|
}
|
|
|
|
private static class B extends A implements IA {
|
|
public void print() throws IOException, FileNotFoundException {
|
|
|
|
}
|
|
}
|
|
} |