blob: 82ea17f3bdd06e9af6eafcac4b87eb49055bc55f [file] [log] [blame]
// "Add on demand static import for 'test.Bar'" "false"
package test;
import static test.Bar.*;
class Bar {
public static final void f() {}
}
public class Foo {
public static final void f(int i) {}
{
<caret>Bar.f(); // invoke 'add on demand static import' for Bar class here. The call is now done to other method.
}
}