Files
kotlin/compiler/testData/codegen/box/topLevelPrivate/syntheticAccessorInMultiFile.kt
2016-11-09 21:41:12 +03:00

19 lines
312 B
Kotlin
Vendored

// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS
// WITH_RUNTIME
@file:kotlin.jvm.JvmMultifileClass
@file:kotlin.jvm.JvmName("TestKt")
package test
private val prop = "O"
private fun test() = "K"
fun box(): String {
return {
prop + test()
}()
}