Add inspection to remove redundant qualifier name
#KT-12134 Fixed
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
package my.simple.name
|
||||
|
||||
fun run() {}
|
||||
fun go(check: () -> Unit) = check()
|
||||
|
||||
fun main() {
|
||||
val a = my.simple.name<caret>.go {
|
||||
run()
|
||||
}
|
||||
val b = my.simple.name.go(::run)
|
||||
}
|
||||
Reference in New Issue
Block a user