Reports explicit references to FunctionN and TupleN that could be replaced with syntactic sugar.

Example:


  val func: Function1[Int, Int] =
    a => a + 4

After the quick-fix is applied:


  val func: (Int) => Int =
    a => a + 4