]> git.lizzy.rs Git - rust.git/blob - src/test/ui/conversion-methods.stderr
Remove E0308 note when primary label has all info
[rust.git] / src / test / ui / conversion-methods.stderr
1 error[E0308]: mismatched types
2   --> $DIR/conversion-methods.rs:5:41
3    |
4 LL |     let _tis_an_instants_play: String = "'Tis a fond Ambush—";
5    |                                         ^^^^^^^^^^^^^^^^^^^^^
6    |                                         |
7    |                                         expected struct `std::string::String`, found &str
8    |                                         help: try using a conversion method: `"'Tis a fond Ambush—".to_string()`
9
10 error[E0308]: mismatched types
11   --> $DIR/conversion-methods.rs:6:40
12    |
13 LL |     let _just_to_make_bliss: PathBuf = Path::new("/ern/her/own/surprise");
14    |                                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
15    |                                        |
16    |                                        expected struct `std::path::PathBuf`, found &std::path::Path
17    |                                        help: try using a conversion method: `Path::new("/ern/her/own/surprise").to_path_buf()`
18
19 error[E0308]: mismatched types
20   --> $DIR/conversion-methods.rs:9:40
21    |
22 LL |     let _but_should_the_play: String = 2; // Perhaps surprisingly, we suggest .to_string() here
23    |                                        ^
24    |                                        |
25    |                                        expected struct `std::string::String`, found integer
26    |                                        help: try using a conversion method: `2.to_string()`
27
28 error[E0308]: mismatched types
29   --> $DIR/conversion-methods.rs:12:47
30    |
31 LL |     let _prove_piercing_earnest: Vec<usize> = &[1, 2, 3];
32    |                                               ^^^^^^^^^^
33    |                                               |
34    |                                               expected struct `std::vec::Vec`, found &[{integer}; 3]
35    |                                               help: try using a conversion method: `(&[1, 2, 3]).to_vec()`
36    |
37    = note: expected struct `std::vec::Vec<usize>`
38            found reference `&[{integer}; 3]`
39
40 error: aborting due to 4 previous errors
41
42 For more information about this error, try `rustc --explain E0308`.