Files
kotlin-fork/js/js.translator/testData/box/inheritance/interfaces/abstractClassInheritingDefaultMethod.kt
T

10 lines
129 B
Kotlin
Vendored

// EXPECTED_REACHABLE_NODES: 501
interface I {
fun foo() = "OK"
}
abstract class A : I
class B : A()
fun box() = B().foo()