mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 01:50:56 +07:00
8 lines
132 B
Java
8 lines
132 B
Java
package impl;
|
|
import foo.Foo;
|
|
public class FooImpl extends Foo {}
|
|
class Bar {
|
|
void doSmth(FooImpl im) {
|
|
im.f<caret>oo();
|
|
}
|
|
} |