Files
kotlin-fork/compiler/testData/diagnostics/tests/secondaryConstructors/nestedExtendsInner.fir.kt
T
2023-01-27 12:26:51 +00:00

8 lines
135 B
Kotlin
Vendored

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