Reports fully qualified names that can be replaced with an existing import alias.

Example:


import foo.Foo as Bar
fun main() {
    foo.Foo()
}

After the quick-fix is applied:


import foo.Foo as Bar
fun main() {
    Bar()
}