Files
kotlin/compiler/testData/codegen/boxAgainstJava/visibility/protectedAndPackage/overrideProtectedFunInPackage.java
2014-06-26 20:57:40 +04:00

10 lines
155 B
Java
Vendored

package protectedPack;
import java.lang.String;
public class overrideProtectedFunInPackage {
protected String foo() {
return "fail";
}
}