E4057

E4057#

The constructor is duplicate.

错误示例#

enum E {
  A
  A(Int)
}

建议#

Rename the constructor to a different name.

enum E {
  A
  B(Int)
}