mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
13 lines
198 B
Kotlin
Vendored
13 lines
198 B
Kotlin
Vendored
@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()
|
|
}()
|
|
} |