mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 14:25:04 +07:00
this is inaccessible inside interface (IDEA-94986)
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
class C implements A {
|
||||
C(A 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>){};
|
||||
}
|
||||
Reference in New Issue
Block a user