Files
kotlin-fork/js/js.translator/testData/box/inheritance/interfaces/abstractClassInheritingDefaultMethod.kt
T
2018-09-12 09:49:25 +03:00

10 lines
130 B
Kotlin
Vendored

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