14 lines
186 B
Kotlin
Vendored
14 lines
186 B
Kotlin
Vendored
// PSI_ELEMENT: org.jetbrains.kotlin.psi.KtClass
|
|
// OPTIONS: derivedClasses
|
|
class Outer {
|
|
interface Z: A {
|
|
|
|
}
|
|
|
|
object O1: A()
|
|
|
|
class Inner {
|
|
object O2: Z
|
|
}
|
|
}
|