mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
resolve package/class if field is not accessible in fqn method call (IDEA-133812)
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
class C {
|
||||
private int id;
|
||||
}
|
||||
|
||||
class A extends C {
|
||||
{
|
||||
<error descr="Cannot resolve symbol 'id'">id</error>.MyObject.fromInt(1);
|
||||
|
||||
<error descr="'id' has private access in 'C'">id</error>.MyObject o;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user