blob: 54167ce1935197271083f7ee9c6148bb53efde5a [file] [log] [blame]
class AccessThroughSuper {
class SuperClass {
protected String field;
protected String method() {
return field;
}
}
class SubClass extends SuperClass {
protected String fieldTest() {
return super.field;
}
protected String methodTest() {
return super.method();
}
}
}