Files
kotlin-fork/js/js.translator/testData/box/expression/invoke/internalFunctionFromSuperclass.kt
T
2018-09-12 09:49:25 +03:00

10 lines
154 B
Kotlin
Vendored

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