Files
kotlin-fork/compiler/testData/diagnostics/tests/cyclicHierarchy/classInheritsNested.kt
T

5 lines
96 B
Kotlin
Vendored

// FIR_IDENTICAL
open class E : <!CYCLIC_INHERITANCE_HIERARCHY!>E.EE<!>() {
open class EE
}