到達不能コードを報告します。

例:


  def test(): Unit = {
    throw new Exception()
    println("this will never be reached")
  }

クイックフィックス適用後:


  def test(): Unit = {
    throw new Exception()
  }