mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 07:50:55 +07:00
12 lines
185 B
Java
12 lines
185 B
Java
interface I {
|
|
boolean foo(Object obj);
|
|
|
|
boolean foo(Integer myObj);
|
|
}
|
|
|
|
abstract class C implements I {
|
|
public boolean foo(Object obj) {
|
|
return <caret>foo((Integer)obj);
|
|
}
|
|
}
|