mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 21:50:54 +07:00
13 lines
204 B
Java
13 lines
204 B
Java
class Main {
|
|
void foo() {
|
|
Test.class.getMethod("<caret>");
|
|
}
|
|
}
|
|
|
|
class Test extends Parent {
|
|
public static void overloaded(int n){}
|
|
}
|
|
|
|
class Parent {
|
|
public static void overloaded(String s){}
|
|
} |