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

8 lines
95 B
Kotlin
Vendored

class A {
open inner class Inner
class Nested : Inner {
constructor()
}
}