9 lines
120 B
Kotlin
Vendored
9 lines
120 B
Kotlin
Vendored
abstract class ALeft {
|
|
abstract fun foo()
|
|
}
|
|
|
|
interface IRight {
|
|
fun foo() {}
|
|
}
|
|
|
|
class CDerived : ALeft(), IRight |