E4055

E4055#

Field is already declared.

错误示例#

struct A {
  a : Int
  a : Double
}

建议#

Rename the field to a different name.

struct A {
  a : Int
  b : Double
}