allow navigation to not accessible fields when they are used inside reference chain

This commit is contained in:
Anna Kozlova
2015-02-17 14:58:59 +01:00
parent bcbc25e1de
commit 6ca09678c2
2 changed files with 8 additions and 4 deletions
@@ -4,7 +4,7 @@ class C {
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.fromInt(1);
<error descr="'id' has private access in 'C'">id</error>.MyObject o;
}