9 lines
120 B
Kotlin
Vendored
9 lines
120 B
Kotlin
Vendored
interface ITop {
|
|
fun foo() {}
|
|
}
|
|
|
|
interface ILeft : ITop
|
|
|
|
interface IRight : ITop
|
|
|
|
interface IDerived : ILeft, IRight |