18 lines
168 B
Kotlin
Vendored
18 lines
168 B
Kotlin
Vendored
// PSI_ELEMENT: org.jetbrains.kotlin.psi.KtClass
|
|
// OPTIONS: derivedInterfaces
|
|
interface <caret>X {
|
|
|
|
}
|
|
|
|
open class A: X {
|
|
|
|
}
|
|
|
|
open class C: Y {
|
|
|
|
}
|
|
|
|
interface Z: A {
|
|
|
|
}
|