public class TestClass { private int x = 5; // an instance field public static void main(String[] args) { int y = x; // error: won't compile } }