mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 05:09:37 +07:00
17 lines
270 B
Java
17 lines
270 B
Java
// "Add static import for 'test.Bar.f'" "true"
|
|
package test;
|
|
|
|
import static test.Bar.f;
|
|
|
|
class Bar {
|
|
public static final void f() {}
|
|
}
|
|
public class Foo extends FooSuper{
|
|
{
|
|
Bar.<caret>f();
|
|
}
|
|
}
|
|
|
|
class FooSuper {
|
|
public static final void f(int i) {}
|
|
} |