Adjust J2K to latest protected visibility fixes

This commit is contained in:
Denis Zharkov
2016-03-30 11:55:22 +03:00
parent 92be4aee9c
commit 1bc45fb9cf
8 changed files with 58 additions and 42 deletions
@@ -5,10 +5,14 @@ public class BaseInheritorSamePackage {
}
protected void foo() {
protected BaseInheritorSamePackage(int x) {
}
protected void foo() {
new BaseInheritorSamePackage(1);
}
protected int i = 1;
}