blob: e9da55cac8ff127268cb2a6e6b85765011632b53 [file] [log] [blame]
// "Add on demand static import for 'test.Bar'" "false"
package test;
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.
}
}