blob: 26a9777600ce00b01e5ff8896f6171af1f033495 [file] [log] [blame]
class X {
private static int x = 0;
public static int getX() {
return x;
}
public static void setX(int x) {
X.x = x;
}
}
class Y extends X {
}