summary refs log tree commit diff
path: root/src/test/ui/struct-fields-decl-dupe.stderr
blob: b5068b4abda530508006c0eaafc55a74469d3350 (plain)
1
2
3
4
5
6
7
8
9
10
11
error[E0124]: field `foo` is already declared
  --> $DIR/struct-fields-decl-dupe.rs:13:5
   |
LL |     foo: isize,
   |     ---------- `foo` first declared here
LL |     foo: isize,
   |     ^^^^^^^^^^ field already declared

error: aborting due to previous error

For more information about this error, try `rustc --explain E0124`.