Files
rust/tests/ui/binding/struct-destructuring-repeated-bindings-9725.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
699 B
Plaintext
Raw Normal View History

2018-07-15 14:11:54 -07:00
error[E0416]: identifier `foo` is bound more than once in the same pattern
2025-07-13 16:39:45 -04:00
--> $DIR/struct-destructuring-repeated-bindings-9725.rs:5:18
2018-07-15 14:11:54 -07:00
|
LL | let A { foo, foo } = A { foo: 3 };
| ^^^ used in a pattern more than once
error[E0025]: field `foo` bound multiple times in the pattern
2025-07-13 16:39:45 -04:00
--> $DIR/struct-destructuring-repeated-bindings-9725.rs:5:18
2018-07-15 14:11:54 -07:00
|
LL | let A { foo, foo } = A { foo: 3 };
| --- ^^^ multiple uses of `foo` in pattern
| |
| first use of `foo`
error: aborting due to 2 previous errors
Some errors have detailed explanations: E0025, E0416.
2018-07-15 14:11:54 -07:00
For more information about an error, try `rustc --explain E0025`.