Files
kotlin-fork/j2k/testData/multiFile/ProtectedVisibility/InheritorOtherPackage2.java
T
2016-03-31 14:51:57 +03:00

11 lines
193 B
Java
Vendored

package test2;
import test.*;
public class DerivedOtherPackage extends BaseOtherPackage {
protected DerivedOtherPackage() {
super();
foo();
int i = this.i;
}
}