mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 21:50:54 +07:00
15 lines
196 B
Java
15 lines
196 B
Java
class A {
|
|
public void newMethod() {}
|
|
}
|
|
|
|
class B {
|
|
static class C extends A {
|
|
{
|
|
B.newMethod();
|
|
}
|
|
}
|
|
|
|
private static void newMethod() {
|
|
System.out.println();
|
|
}
|
|
} |