Files
kotlin-fork/js/js.translator/testData/box/inheritance/interfaces/withDefaultMethodFromSuperInterface.kt
T
2016-11-11 16:26:31 +03:00

9 lines
89 B
Kotlin
Vendored

interface I {
fun foo() = "OK"
}
interface J : I
class A : J
fun box() = A().foo()