mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
15 lines
218 B
Java
15 lines
218 B
Java
// "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) {
|
|
}
|
|
} |