]> git.lizzy.rs Git - rust.git/blob - src/test/ui/shadowed/shadowing-in-the-same-pattern.stderr
71197efcaba54913970b6a4e1531bfd43c1cf35b
[rust.git] / src / test / ui / shadowed / shadowing-in-the-same-pattern.stderr
1 error[E0416]: identifier `a` is bound more than once in the same pattern
2   --> $DIR/shadowing-in-the-same-pattern.rs:3:10
3    |
4 LL | fn f((a, a): (isize, isize)) {}
5    |          ^ used in a pattern more than once
6
7 error[E0416]: identifier `a` is bound more than once in the same pattern
8   --> $DIR/shadowing-in-the-same-pattern.rs:6:13
9    |
10 LL |     let (a, a) = (1, 1);
11    |             ^ used in a pattern more than once
12
13 error: aborting due to 2 previous errors
14
15 For more information about this error, try `rustc --explain E0416`.