Files
kotlin-fork/compiler/testData/codegen/box/topLevelPrivate/syntheticAccessor.kt
T
2018-08-09 14:22:50 +03:00

11 lines
128 B
Kotlin
Vendored

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