11 lines
173 B
Kotlin
Vendored
11 lines
173 B
Kotlin
Vendored
import kotlin.platform.platformStatic
|
|
|
|
object X {
|
|
@platformStatic val x = "OK"
|
|
|
|
fun fn(value : String = x): String = value
|
|
}
|
|
|
|
fun box(): String {
|
|
return X.fn()
|
|
} |