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