mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 17:20:54 +07:00
11 lines
244 B
Java
11 lines
244 B
Java
class Test {
|
|
|
|
public static void main(String[] args) {
|
|
final Test s = new Test();
|
|
System.out.println(newMethod(s));
|
|
}
|
|
|
|
private static Object newMethod(Test s) {
|
|
return s.callAbsentMethod().toString();
|
|
}
|
|
} |