]> git.proxmox.com Git - rustc.git/blame - src/test/ui/mismatched_types/E0409.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / mismatched_types / E0409.stderr
CommitLineData
8bb4bdeb 1error[E0409]: variable `y` is bound in inconsistent ways within the same match arm
0731742a 2 --> $DIR/E0409.rs:5:23
32a655c1 3 |
532ac7d7 4LL | (0, ref y) | (y, 0) => {}
32a655c1
SL
5 | - ^ bound in different ways
6 | |
7 | first binding
8
9error[E0308]: mismatched types
0731742a 10 --> $DIR/E0409.rs:5:23
32a655c1 11 |
532ac7d7 12LL | (0, ref y) | (y, 0) => {}
60c5eb7d 13 | ^ expected `&{integer}`, found integer
32a655c1 14
041b39d2 15error: aborting due to 2 previous errors
32a655c1 16
48663c56 17Some errors have detailed explanations: E0308, E0409.
0531ce1d 18For more information about an error, try `rustc --explain E0308`.