blob: db823f144fe38269e80e9bbbe9e413f4a39e58b2 [file] [log] [blame]
// "Add static import for 'test.Bar.f'" "false"
package test;
class Bar {
public static final void f() {}
}
public class Foo {
public static final void f(int i) {}
{
Bar.<caret>f();
}
}