Files
kotlin/compiler/testData/codegen/boxWithJava/jvmField/constructorProperty.kt
2016-03-02 15:47:38 +03:00

19 lines
284 B
Kotlin
Vendored

// FILE: Test.java
public class Test {
public static String invokeMethodWithPublicField() {
C c = new C("OK");
return c.foo;
}
}
// FILE: simple.kt
class C(@JvmField val foo: String) {
}
fun box(): String {
return Test.invokeMethodWithPublicField()
}