10 lines
137 B
Kotlin
Vendored
10 lines
137 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
interface ITop {
|
|
fun foo() {}
|
|
}
|
|
|
|
interface ILeft : ITop
|
|
|
|
interface IRight : ITop
|
|
|
|
interface IDerived : ILeft, IRight |