Introduce "Redundant 'inner' modifier" inspection
#KT-3262 Fixed
This commit is contained in:
committed by
Vladimir Dolzhenko
parent
d76dc6f57e
commit
5f1cc3b152
+14
@@ -0,0 +1,14 @@
|
||||
// PROBLEM: none
|
||||
open class A {
|
||||
fun a() {}
|
||||
}
|
||||
|
||||
open class B : A()
|
||||
|
||||
class C : B() {
|
||||
<caret>inner class D {
|
||||
fun d() {
|
||||
a()
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user