mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-31 17:45:48 +07:00
GitOrigin-RevId: 3aae5c738d48c38144f6a78c36738121831ae5a5
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();
|
|
}
|
|
} |