Add inspection to remove redundant qualifier name

#KT-12134 Fixed
This commit is contained in:
Dmitry Gridin
2019-02-27 15:54:54 +03:00
parent d0c3a28996
commit 3756b6f54d
83 changed files with 1469 additions and 0 deletions
@@ -0,0 +1,23 @@
// WITH_RUNTIME
package my.simple.name
open class SuperClass {
companion object {
fun check() {}
}
}
class Child : SuperClass() {
class Foo constructor() {
constructor(i: Int) : this()
fun foo() {
my.simple.name.SuperClass.check()
Child.Foo<caret>.check()
}
companion object {
fun check() {}
}
}
}