]> git.lizzy.rs Git - rust.git/blob - src/test/ui/mismatched_types/E0409.stderr
report the total number of errors on compilation failure
[rust.git] / src / test / ui / mismatched_types / E0409.stderr
1 error[E0409]: variable `y` is bound in inconsistent ways within the same match arm
2   --> $DIR/E0409.rs:15:23
3    |
4 15 |         (0, ref y) | (y, 0) => {} //~ ERROR E0409
5    |                 -     ^ bound in different ways
6    |                 |
7    |                 first binding
8
9 error[E0308]: mismatched types
10   --> $DIR/E0409.rs:15:23
11    |
12 15 |         (0, ref y) | (y, 0) => {} //~ ERROR E0409
13    |                       ^ expected &{integer}, found integral variable
14    |
15    = note: expected type `&{integer}`
16               found type `{integer}`
17
18 error: aborting due to 2 previous errors
19