mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-01 20:52:37 +07:00
GitOrigin-RevId: ef1718bee6d9d9ed9886b1a02cd9c6be4aee68f7
11 lines
247 B
Java
11 lines
247 B
Java
public class Test {
|
|
public class Inner {
|
|
Inner(String s) throws java.lang.IOException {}
|
|
}
|
|
|
|
public class InnerImpl extends Inner {
|
|
InnerImpl(String s) throws java.lang.IOException {
|
|
super(s);
|
|
}
|
|
}
|
|
} |