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