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

8 lines
129 B
Kotlin
Vendored

class C {
@publicField private val foo: String = "OK"
}
fun box(): String {
return Test.invokeMethodWithPublicField()
}