Files
kotlin/compiler/testData/codegen/privateTopLevelPropAndVarInInner.kt

5 lines
69 B
Kotlin

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