class A { private final int aField = 1; class B { int method() { int i = 2; return aField + i; } } }