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

13 lines
244 B
Java
Vendored

public class funCallInConstructor {
protected final String protectedProperty;
public funCallInConstructor(String str) {
protectedProperty = str;
}
protected static String protectedFun() {
return "OK";
}
}