Files
kotlin-fork/js/js.translator/testData/inheritance/cases/kt3499.kt
T
2015-09-22 15:00:24 +02:00

13 lines
159 B
Kotlin
Vendored

package foo
interface A : B, E
interface B
open class C {
fun foo() = true
}
interface D
interface E
interface F : G, D
interface G
fun box() = C().foo()