blob: 2144d3fe9f0ac5b56a382e8b379ed8f218a7e9b0 [file] [log] [blame]
public class A {
void test() {
String s = B.f;
System.out.println(s);
}
void callTest() {
test();
}
}
class B {
public static String f = null;
}