Files
kotlin-fork/js/js.translator/testData/inheritance/cases/kt3499.kt
T
2014-03-11 20:04:00 +04:00

13 lines
135 B
Kotlin

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