Files
kotlin-fork/compiler/testData/diagnostics/tests/inner/interfaceInInnerClass.fir.kt
T
2021-03-01 16:57:54 +03:00

6 lines
115 B
Kotlin
Vendored

class Outer {
inner class Inner {
<!NESTED_CLASS_NOT_ALLOWED!>interface TestNestedInterface<!>
}
}