Hi all, Is it possible to to access ABC class (not the inner one) from InClassTest provided that InClassTest has an inner class called ABC public class InClassTest { public InClassTest() { } public void makePrint() { ABC a = new ABC(); a.doPrint(); } public static void main (String[] args) { new InClassTest().makePrint(); } class ABC{ public void doPrint() { System.out.println("hello ...