]> git.lizzy.rs Git - rust.git/blob - tests/ui/issues/issue-15260.stderr
Rollup merge of #107152 - GuillaumeGomez:migrate-to-css-var, r=notriddle
[rust.git] / tests / ui / issues / issue-15260.stderr
1 error[E0025]: field `a` bound multiple times in the pattern
2   --> $DIR/issue-15260.rs:8:9
3    |
4 LL |         a: _,
5    |         ---- first use of `a`
6 LL |         a: _
7    |         ^^^^ multiple uses of `a` in pattern
8
9 error[E0025]: field `a` bound multiple times in the pattern
10   --> $DIR/issue-15260.rs:14:9
11    |
12 LL |         a,
13    |         - first use of `a`
14 LL |         a: _
15    |         ^^^^ multiple uses of `a` in pattern
16
17 error[E0025]: field `a` bound multiple times in the pattern
18   --> $DIR/issue-15260.rs:20:9
19    |
20 LL |         a,
21    |         - first use of `a`
22 LL |         a: _,
23    |         ^^^^ multiple uses of `a` in pattern
24
25 error[E0025]: field `a` bound multiple times in the pattern
26   --> $DIR/issue-15260.rs:22:9
27    |
28 LL |         a,
29    |         - first use of `a`
30 ...
31 LL |         a: x
32    |         ^^^^ multiple uses of `a` in pattern
33
34 error: aborting due to 4 previous errors
35
36 For more information about this error, try `rustc --explain E0025`.