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