blob: 516b42996f68a85fdfc56bd95b78bfa0080a1168 [file] [log] [blame]
// "Qualify with Test.this" "false"
class Test {
String myStr;
class Foo extends Super {
Foo(Test t) {
super(t.my<caret>Str);
}
}
}
class Super {
protected String myStr;
Super(String s) {
}
}