Files
kotlin-fork/idea/testData/inspectionsLocal/redundantInnerClassModifier/extendInnerClass2.kt
T
Toshiaki Kameyama 5f1cc3b152 Introduce "Redundant 'inner' modifier" inspection
#KT-3262 Fixed
2020-02-21 16:12:49 +01:00

8 lines
116 B
Kotlin
Vendored

// PROBLEM: none
class A {
fun a() {}
open inner class B(i: Int)
<caret>inner class C(i: Int) : B(i)
}