Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ebcc2cc3b207156c1c0e90e5107aa356b8fa8d72
/
.
/
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
()
}