Files
kotlin-fork/nj2k/testData/multiFile/ProtectedVisibility/InheritorOtherPackage1.java
T
2019-10-12 12:50:34 +03:00

14 lines
152 B
Java
Vendored

package test;
public class BaseOtherPackage {
protected BaseOtherPackage() {
}
protected void foo() {
}
protected int i = 1;
}