Files
kotlin-fork/js/js.translator/testData/box/expression/invoke/internalFunctionFromSuperclass.kt
T

9 lines
120 B
Kotlin
Vendored

abstract class A {
final internal fun foo() = "OK"
}
class B : A() {
fun bar() = foo()
}
fun box() = B().bar()