blob: b8fae1e68ae5203570dd37830359d93ed7cce8de [file]
interface A {
private fun foo() = "OK"
public fun bar() = foo()
}
class B : A {
private fun foo() = "fail"
}
fun box() = B().bar()