Reports partial functions that could be replaced with normal functions.

Example:


  Seq(1).foreach {
    case _ => 3
  }

After the quick-fix is applied:


  Seq(1).foreach(_ => 3)