该快速修复可以移除无法到达的代码。
示例:
fun value(): Int { return 42 print("Hello, world !") }
在应用快速修复后:
fun value(): Int { return 42 }