public class A {
  public static int x;
  public int m() {
    A a = new A();
    return a.x;
  }
}