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