The quick-fix removes unreachable code.
例:
fun value(): Int { return 42 print("Hello, world !") }
クイックフィックス適用後:
fun value(): Int { return 42 }