快速修复会将集合字面量替换为函数调用。
示例:
val mutableList = ["a", "b", "c"].toMutableList()
在应用快速修复后:
val mutableList = mutableListOf("a", "b", "c")