Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2f8b8915520217c656f00750d7faa239c6233ece
/
.
/
compiler
/
testData
/
codegen
/
boxWithStdlib
/
jvmStatic
/
privateMethod.kt
blob: 8bd7f0c2e69f996a48c8294384f7d33d9f624318 [
file
]
object
A
{
private
@JvmStatic
fun a
():
String
{
return
"OK"
}
object
Z
{
val p
=
a
()
}
}
fun box
():
String
{
return
A
.
Z
.
p
}