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