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