blob: 454a3815e242657942bc4d4cb2417ed2e7b9937b [file] [log] [blame]
open class A {
protected fun foo() = "OK"
}
class B {
companion object : A()
fun bar() = foo()
}
fun box() = B().bar()