mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
17 lines
187 B
Kotlin
Vendored
17 lines
187 B
Kotlin
Vendored
var holder = ""
|
|
|
|
fun getA(): A {
|
|
holder += "OK"
|
|
return A
|
|
}
|
|
|
|
object A {
|
|
@JvmStatic fun a(): String {
|
|
return holder
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
return getA().a()
|
|
}
|