mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 08:31:35 +00:00
14 lines
158 B
Kotlin
14 lines
158 B
Kotlin
object A {
|
|
var result = "Fail"
|
|
|
|
fun foo() {
|
|
result = "OK"
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
val x = A::foo
|
|
A.x()
|
|
return A.result
|
|
}
|