E4055

E4055#

Field is already declared.

Erroneous example#

struct A {
  a : Int
  a : Double
}

Suggestion#

Rename the field to a different name.

struct A {
  a : Int
  b : Double
}