// "Qualify static 'rr' access with reference to class 'AClass.R'" "false" class AClass { private static class R { static int rr = 0; } public R getR() { return null; } } // AClass.R is not accessible there class ss { void f(AClass d){ int i = d.getR().rr; } }