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

7 lines
80 B
Plaintext
Vendored

class A {
fun a() {}
open class B(i: Int)
class C(i: Int) : B(i)
}