14 lines
233 B
Kotlin
Vendored
14 lines
233 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
interface ILeft {
|
|
fun foo()
|
|
}
|
|
|
|
interface IRight {
|
|
fun foo()
|
|
}
|
|
|
|
interface IDerived : ILeft, IRight
|
|
|
|
<!ABSTRACT_MEMBER_NOT_IMPLEMENTED!>class CDerived<!> : ILeft, IRight
|
|
|
|
abstract class ADerived : ILeft, IRight |