mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 05:09:37 +07:00
11 lines
216 B
Java
11 lines
216 B
Java
class C {
|
|
private int id;
|
|
}
|
|
|
|
class A extends C {
|
|
{
|
|
<error descr="'id' has private access in 'C'">id</error>.MyObject.fromInt(1);
|
|
|
|
<error descr="'id' has private access in 'C'">id</error>.MyObject o;
|
|
}
|
|
} |