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