Files
kotlin-fork/idea/testData/findUsages/kotlin/findClassUsages/kotlinDerivedInterfaceUsages2.1.kt
T
2013-11-06 14:26:29 +04:00

17 lines
160 B
Kotlin

// PSI_ELEMENT: org.jetbrains.jet.lang.psi.JetClass
// OPTIONS: derivedInterfaces
open class B: A() {
}
open class C: Y {
}
trait Z: A {
}
trait U: Z {
}