Files
kotlin-fork/js/js.translator/testData/box/inheritance/interfaces/abstractClassInheritingDefaultMethod.kt
T
2018-04-27 20:02:59 +03:00

10 lines
130 B
Kotlin
Vendored

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