mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-07 16:26:10 +07:00
8 lines
216 B
Java
8 lines
216 B
Java
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>){};
|
|
} |