mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 17:51:09 +07:00
13 lines
221 B
Java
13 lines
221 B
Java
class Main {
|
|
void foo() {
|
|
Test.class.getMethod("overloaded", String.class);
|
|
}
|
|
}
|
|
|
|
class Test extends Parent {
|
|
public static void overloaded(int n){}
|
|
}
|
|
|
|
class Parent {
|
|
public static void overloaded(String s){}
|
|
} |