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