クイックフィックスにより、到達不能コードが除去されます。
例:
fun value(): Int { return 42 print("Hello, world !") }
クイックフィックス適用後:
fun value(): Int { return 42 }