class Test { static class B { int getX(){ return 42; } } void test(){ int x = new Test.B().getX(); System.out.println(x); } }