Reports unreachable code.

Example:


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

After the quick-fix is applied:


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