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