Files
kotlin-fork/compiler/testData/codegen/boxWithStdlib/topLevelPrivate/syntheticAccessor.kt
T
2015-10-18 17:53:28 +03:00

11 lines
128 B
Kotlin
Vendored

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