Files
kotlin-fork/compiler/testData/codegen/box/package/privateTopLevelPropAndVarInInner.kt
T
2018-06-28 12:26:41 +02:00

6 lines
95 B
Kotlin
Vendored

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