1public class Issue156 { 2 String myField; 3 4 class Inner { 5 void foo() { 6 Issue156.this.myField.charAt(0); 7 } 8 } 9}