Files
kotlin-fork/js/js.translator/testData/box/inheritance/interfaces/withDefaultMethodFromSuperInterface.kt
T
2019-12-06 05:37:09 +03:00

11 lines
142 B
Kotlin
Vendored

// EXPECTED_REACHABLE_NODES: 1383
interface I {
fun foo() = "OK"
}
interface J : I
open class A : J
class B : A()
fun box() = B().foo()