Files
kotlin-fork/compiler/testData/codegen/box/jvmStatic/privateMethod.kt
T

19 lines
204 B
Kotlin
Vendored

// TARGET_BACKEND: JVM
// WITH_RUNTIME
object A {
private @JvmStatic fun a(): String {
return "OK"
}
object Z {
val p = a()
}
}
fun box(): String {
return A.Z.p
}