E4057

E4057#

The constructor is duplicate.

Erroneous example#

enum E {
  A
  A(Int)
}

Suggestion#

Rename the constructor to a different name.

enum E {
  A
  B(Int)
}