도달할 수 없는 코드를 보고합니다.

예:


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

빠른 수정 적용 후:


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