Files
kotlin-fork/compiler/testData/codegen/privateTopLevelPropAndVarInInner.kt
T

5 lines
69 B
Kotlin

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