mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 11:36:16 +07:00
10 lines
128 B
Java
10 lines
128 B
Java
class A {
|
|
public static void main(String[] args) {
|
|
D d = new D();
|
|
d.xyzzy();
|
|
|
|
C c = new C();
|
|
c.xyzzy();
|
|
}
|
|
}
|