blob: 9d7c071e34159fc93cf5d030b7d306d5247a4c94 [file] [log] [blame]
package b;
import a.A;
public class B
{
I i = new I()
{
public void method()
{
A.method2();
}
};
}
interface I
{
void method();
}