mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 03:51:12 +07:00
13 lines
188 B
Java
13 lines
188 B
Java
class Main {
|
|
void foo() {
|
|
Test.class.getMethod("shadowed");
|
|
}
|
|
}
|
|
|
|
class Test extends Parent {
|
|
public static void shadowed(){}
|
|
}
|
|
|
|
class Parent {
|
|
public static void shadowed(){}
|
|
} |