mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 07:50:55 +07:00
12 lines
146 B
Java
12 lines
146 B
Java
import java.io.IOException;
|
|
|
|
class Base {
|
|
public Base() throws IOException {
|
|
}
|
|
}
|
|
|
|
class AAA extends Base {
|
|
public AAA() {
|
|
super();
|
|
}
|
|
} |