blob: 3a51862e7320c9b23af1568dd5ca90fcb15a6cc3 [file] [log] [blame]
// "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) {
}
}