d35b20f764
* fix kotlin.Long * update tests
14 lines
194 B
Kotlin
Vendored
14 lines
194 B
Kotlin
Vendored
// IGNORE_BACKEND: JS
|
|
// IGNORE_BACKEND: JVM_IR
|
|
|
|
interface A {
|
|
private fun foo() = "OK"
|
|
|
|
public fun bar() = foo()
|
|
}
|
|
|
|
class B : A {
|
|
private fun foo() = "fail"
|
|
}
|
|
|
|
fun box() = B().bar() |