Files
kotlin/compiler/testData/codegen/box/package/privateTopLevelPropAndVarInInner.kt
2019-11-19 11:00:09 +03:00

6 lines
99 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
private var x = "O"
private fun f() = "K"
fun box() = { x + f() }()