]> git.proxmox.com Git - rustc.git/blob - src/test/ui/suggestions/issue-53692.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / suggestions / issue-53692.stderr
1 error[E0308]: mismatched types
2 --> $DIR/issue-53692.rs:7:33
3 |
4 LL | let items_clone: Vec<i32> = ref_items.clone();
5 | -------- ^^^^^^^^^^-----^^
6 | | | |
7 | | | help: try using a conversion method: `to_vec`
8 | | expected struct `Vec`, found `&[i32]`
9 | expected due to this
10 |
11 = note: expected struct `Vec<i32>`
12 found reference `&[i32]`
13
14 error[E0308]: mismatched types
15 --> $DIR/issue-53692.rs:14:26
16 |
17 LL | let string: String = s.clone();
18 | ------ ^^-----^^
19 | | | |
20 | | | help: try using a conversion method: `to_string`
21 | | expected struct `String`, found `&str`
22 | expected due to this
23
24 error: aborting due to 2 previous errors
25
26 For more information about this error, try `rustc --explain E0308`.