Files
kotlin-fork/compiler/testData/diagnostics/tests/secondaryConstructors/nestedExtendsInner.kt
T
2022-09-13 09:09:00 +00:00

8 lines
137 B
Kotlin
Vendored

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