报告不可到达的代。

示例:


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

在应用快速修复后:


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