Add inspection to remove redundant qualifier name
#KT-12134 Fixed
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
// WITH_RUNTIME
|
||||
package my.simple.name
|
||||
|
||||
class Outer {
|
||||
class Foo constructor() {
|
||||
constructor(i: Int) : this()
|
||||
|
||||
companion object {
|
||||
fun check() {
|
||||
val a = Outer<caret>.Foo(1)
|
||||
val b = Outer.Foo()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user