diff options
author | Jonas Herzig <jonas@spark-squared.com> | 2021-11-12 14:19:18 +0100 |
---|---|---|
committer | Jonas Herzig <jonas@spark-squared.com> | 2021-11-13 10:28:09 +0100 |
commit | 358136a97feff6fd0586fe04a39adbc7ced381c1 (patch) | |
tree | f632b21008fa758d25632b51b0dab9aefd8eb599 /src/testB/java/b | |
parent | 3ee08cbce94a4e7e1ce668f06f5a612cd9f1e677 (diff) | |
download | Remap-358136a97feff6fd0586fe04a39adbc7ced381c1.tar.gz Remap-358136a97feff6fd0586fe04a39adbc7ced381c1.tar.bz2 Remap-358136a97feff6fd0586fe04a39adbc7ced381c1.zip |
Consider location of expression when determining field accessibility
A protected field is not accessible unless we are referencing it from within a
class which extends its owner. Therefore, we may use a synthetic property with
the same name as long as we do not have access to the field.
Diffstat (limited to 'src/testB/java/b')
-rw-r--r-- | src/testB/java/b/pkg/B.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/testB/java/b/pkg/B.java b/src/testB/java/b/pkg/B.java index 150ab0b..67d2ea8 100644 --- a/src/testB/java/b/pkg/B.java +++ b/src/testB/java/b/pkg/B.java @@ -67,6 +67,11 @@ public class B extends BParent implements BInterface { return conflictingField; } + protected int protectedField; + public int getProtectedFieldWithoutConflict() { + return protectedField; + } + public void bOverloaded() { } |