mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 00:21:28 +00:00
13 lines
178 B
Kotlin
Vendored
13 lines
178 B
Kotlin
Vendored
interface ILeft {
|
|
fun foo()
|
|
}
|
|
|
|
interface IRight {
|
|
fun foo()
|
|
}
|
|
|
|
interface IDerived : ILeft, IRight
|
|
|
|
class CDerived : ILeft, IRight
|
|
|
|
abstract class ADerived : ILeft, IRight |