13 lines
135 B
Kotlin
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() |