mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
62ba3e70a1
The previous output was unintuitive to users.
27 lines
999 B
Plaintext
27 lines
999 B
Plaintext
error[E0308]: mismatched types
|
|
--> $DIR/issue-53692.rs:7:33
|
|
|
|
|
LL | let items_clone: Vec<i32> = ref_items.clone();
|
|
| -------- ^^^^^^^^^^-----^^
|
|
| | | |
|
|
| | | help: try using a conversion method: `to_vec`
|
|
| | expected `Vec<i32>`, found `&[i32]`
|
|
| expected due to this
|
|
|
|
|
= note: expected struct `Vec<i32>`
|
|
found reference `&[i32]`
|
|
|
|
error[E0308]: mismatched types
|
|
--> $DIR/issue-53692.rs:14:26
|
|
|
|
|
LL | let string: String = s.clone();
|
|
| ------ ^^-----^^
|
|
| | | |
|
|
| | | help: try using a conversion method: `to_string`
|
|
| | expected `String`, found `&str`
|
|
| expected due to this
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|