// "Qualify with Test.this" "true" class Test { String myStr; class Foo extends Super { Foo() { super(Test.this.myStr); } } } class Super { protected String myStr; Super(String s) { } }