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