Reports redundant constructor invocation on an enum entry.

Example:


  enum class Baz(i: Int = 0) {
      A(1),
      B(),
      C(),
  }

After the quick-fix is applied:


  enum class Baz(i: Int = 0) {
      A(1),
      B,
      C,
  }