mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
15 lines
265 B
Java
15 lines
265 B
Java
class Base {
|
|
public Base() {
|
|
}
|
|
}
|
|
|
|
class Inheritor extends Base {
|
|
public Inheritor(String b<caret>ar) {
|
|
super();
|
|
System.out.println(bar);
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
new Inheritor("bar".toString());
|
|
}
|
|
} |