blob: eaa2f8127025733c0d460f4c07008f845f2d5134 [file] [log] [blame]
package p;
import static p.A.k;
public class A {
public static int k() {
return 0;
}
}
class B {
void use() {
int t= k();
}
}