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

12 lines
154 B
Kotlin
Vendored

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