Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b32f408767cf86efaa65eb02699fe00bd61d99a6
/
.
/
compiler
/
testData
/
codegen
/
box
/
objects
/
classCallsProtectedInheritedByCompanion.kt
blob: 454a3815e242657942bc4d4cb2417ed2e7b9937b [
file
]
open
class
A
{
protected
fun foo
()
=
"OK"
}
class
B
{
companion
object
:
A
()
fun bar
()
=
foo
()
}
fun box
()
=
B
().
bar
()