mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-13 14:00:21 +07:00
highlight this inside interface inner classes (IDEA-97032)
This commit is contained in:
+16
@@ -5,4 +5,20 @@ class C implements A {
|
||||
interface A {
|
||||
A a = new C(<error descr="Cannot find symbol variable this">this</error>);
|
||||
A a1 = new C(<error descr="Cannot find symbol variable this">this</error>){};
|
||||
|
||||
class B {
|
||||
A foo() {
|
||||
return <error descr="Cannot find symbol variable this">A.this</error>;
|
||||
}
|
||||
|
||||
B foo1() {
|
||||
return B.this;
|
||||
}
|
||||
|
||||
class D {
|
||||
B f() {
|
||||
return B.this;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user