Files
kotlin-fork/compiler/testData/codegen/box/topLevelPrivate/syntheticAccessor.kt
T
2019-11-19 11:00:09 +03:00

12 lines
158 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
package test
private val prop = "O"
private fun test() = "K"
fun box(): String {
return {
prop + test()
}()
}