Files
kotlin-fork/compiler/testData/codegen/boxWithStdlib/jvmField/capturePackageFields.kt
T
2015-10-13 10:50:09 +03:00

13 lines
245 B
Kotlin
Vendored

@JvmField public val publicField = "1";
@JvmField internal val internalField = "23";
fun test(): String {
return {
publicField + internalField
}()
}
fun box(): String {
return if (test() == "123") return "OK" else "fail"
}