public class A { private int count = 1; public static void main(String []args) { B b = new A().new B(); } class B { private int count = 2; B() { System.out.println(count); } }}
View my complete profile