Files
kotlin/compiler/testData/codegen/boxWithJava/publicField/simple/Test.java
2015-07-07 16:35:23 +03:00

6 lines
129 B
Java
Vendored

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