Files
kotlin-fork/backend.native/tests/external/codegen/box/topLevelPrivate/syntheticAccessor.kt
T
2017-03-13 15:31:46 +03:00

11 lines
128 B
Kotlin

package test
private val prop = "O"
private fun test() = "K"
fun box(): String {
return {
prop + test()
}()
}