Files
kotlin/compiler/testData/codegen/box/package/privateTopLevelPropAndVarInInner.kt
2014-01-14 18:06:50 +04:00

5 lines
69 B
Kotlin
Vendored

private var x = "O"
private fun f() = "K"
fun box() = { x + f() }()