mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
18 lines
514 B
Plaintext
18 lines
514 B
Plaintext
error: expected expression, found `.`
|
|
--> $DIR/recover-tuple.rs:3:40
|
|
|
|
|
LL | let x: (usize, usize, usize) = (3, .=.);
|
|
| ^ expected expression
|
|
|
|
error[E0308]: mismatched types
|
|
--> $DIR/recover-tuple.rs:6:20
|
|
|
|
|
LL | let y: usize = "";
|
|
| ----- ^^ expected `usize`, found `&str`
|
|
| |
|
|
| expected due to this
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|