class Test { { int x = 0, y; y = ++x; System.out.println("x = " + x); System.out.println("y = " + y); } }