Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
75d8a5bca606366254123abd80c77147a3d426a6
/
.
/
compiler
/
testData
/
codegen
/
box
/
compatibility
/
privateCompanionObject.kt
blob: 0e380040c7d5b6229e6be17db682487d429724cb [
file
]
class
Test
{
private
companion
object
{
val res
=
"OK"
}
fun res
()
=
res
}
fun box
():
String
{
return
Test
().
res
()
}