Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ebcc2cc3b207156c1c0e90e5107aa356b8fa8d72
/
.
/
compiler
/
testData
/
codegen
/
box
/
jvmStatic
/
privateMethod.kt
blob: 3e1a8d49744b46f5b219fef4e76083e0ac1e68c9 [
file
]
// TARGET_BACKEND: JVM
// WITH_STDLIB
object
A
{
private
@JvmStatic
fun a
():
String
{
return
"OK"
}
object
Z
{
val p
=
a
()
}
}
fun box
():
String
{
return
A
.
Z
.
p
}