报告可以替换为现有导入别名的完全限定名称。

示例:


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

在应用快速修复后:


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