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

5 lines
127 B
Kotlin
Vendored

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