Files
kotlin-fork/j2k/testData/fileOrElement/function/overrideWithHigherVisibility.java
T

11 lines
139 B
Java
Vendored

class Base {
protected void foo(){}
}
class Derived extends Base {
@Override
public void foo() {
super.foo();
}
}