mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 00:21:28 +00:00
11 lines
172 B
Kotlin
11 lines
172 B
Kotlin
import kotlin.platform.platformStatic
|
|
|
|
object X {
|
|
platformStatic val x = "OK"
|
|
|
|
fun fn(value : String = x): String = value
|
|
}
|
|
|
|
fun box(): String {
|
|
return X.fn()
|
|
} |