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