Files
kotlin/compiler/testData/codegen/boxWithJava/jvmField/constructorProperty/Test.java

6 lines
133 B
Java
Vendored

public class Test {
public static String invokeMethodWithPublicField() {
C c = new C("OK");
return c.foo;
}
}