23 lines
248 B
Kotlin
Vendored
23 lines
248 B
Kotlin
Vendored
// PSI_ELEMENT: org.jetbrains.kotlin.psi.KtClass
|
|
// OPTIONS: derivedClasses
|
|
|
|
fun foo() {
|
|
open class B: A() {
|
|
|
|
}
|
|
|
|
open class C: Y {
|
|
|
|
}
|
|
|
|
fun bar() {
|
|
interface Z: A {
|
|
|
|
}
|
|
|
|
interface U: Z {
|
|
|
|
}
|
|
}
|
|
}
|