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