Reports arguments that have the same value as the default ones.

The quick-fix will remove the redundant conversions.

Example:


  def f(x: Int, y: Int = 0, z: Int) {}
  f(1, y = 0, z = 1)

After the quick-fix is applied:


  def f(x: Int, y: Int = 0, z: Int) {}
  f(1, z = 1)