Files
kotlin/compiler/testData/diagnostics/tests/inner/interfaceInInnerClass.kt

5 lines
127 B
Kotlin
Vendored

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