public class AllButWriteNoRead { static class X { static int y; } void test() { X.y = 10; System.out.println("hello"); X.y = 15; } }