Files
kotlin-fork/compiler/testData/diagnostics/tests/secondaryConstructors/nestedExtendsInner.fir.kt
T

8 lines
122 B
Kotlin
Vendored

class A {
open inner class Inner
class Nested : Inner {
<!UNRESOLVED_REFERENCE!>constructor()<!>
}
}