Files
kotlin-fork/compiler/testData/diagnostics/tests/inner/interfaceInInnerClass.kt
T

5 lines
125 B
Kotlin
Vendored

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