Files
kotlin-fork/idea/testData/inspectionsLocal/redundantInnerClassModifier/extendJavaNestedInterface.kt
T
Toshiaki Kameyama 09e1bed5c9 Redundant 'inner' modifier: fix false positive/negative with constructor call
#KT-40879 Fixed
#KT-41223 Fixed
#KT-41311 Fixed
#KT-41680 Fixed
2020-10-28 18:16:57 +07:00

3 lines
73 B
Kotlin
Vendored

class Test : Java() {
<caret>inner class Foo : Java.NestedInterface
}