mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
14 lines
162 B
Kotlin
Vendored
14 lines
162 B
Kotlin
Vendored
object A {
|
|
|
|
private @JvmStatic fun a(): String {
|
|
return "OK"
|
|
}
|
|
|
|
object Z {
|
|
val p = a()
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
return A.Z.p
|
|
} |