]> git.proxmox.com Git - rustc.git/blob - tests/ui/parser/recover-tuple.stderr
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / parser / recover-tuple.stderr
1 error: expected expression, found `.`
2 --> $DIR/recover-tuple.rs:3:40
3 |
4 LL | let x: (usize, usize, usize) = (3, .=.);
5 | ^ expected expression
6
7 error[E0308]: mismatched types
8 --> $DIR/recover-tuple.rs:6:20
9 |
10 LL | let y: usize = "";
11 | ----- ^^ expected `usize`, found `&str`
12 | |
13 | expected due to this
14
15 error: aborting due to 2 previous errors
16
17 For more information about this error, try `rustc --explain E0308`.