Introduce "Redundant 'inner' modifier" inspection

#KT-3262 Fixed
This commit is contained in:
Toshiaki Kameyama
2019-09-02 14:45:42 +02:00
committed by Vladimir Dolzhenko
parent d76dc6f57e
commit 5f1cc3b152
34 changed files with 438 additions and 0 deletions
@@ -0,0 +1,12 @@
class A {
class B {
fun b() {}
inner class C {
fun c() {
b()
}
}
}
}