let
快速修复会移除冗余 let 调用。
示例:
fun test(s: String?): Int? = s?.let { it.length }
在应用快速修复后:
fun test(s: String?): Int? = s?.length