Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
073a50037049a4e0869085bf4acf7c29e56210e3
/
.
/
compiler
/
testData
/
codegen
/
box
/
jvmStatic
/
privateMethod.kt
blob: 099b6ed01a78708a2f4153593ba324047ee31bc5 [
file
] [
log
] [
blame
]
// 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
}