]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suggestions/issue-52820.stderr
Remove E0308 note when primary label has all info
[rust.git] / src / test / ui / suggestions / issue-52820.stderr
1 error[E0308]: mismatched types
2   --> $DIR/issue-52820.rs:9:9
3    |
4 LL |         guts,
5    |         ^^^^
6    |         |
7    |         expected struct `std::string::String`, found &str
8    |         help: try using a conversion method: `guts: guts.to_string()`
9
10 error[E0308]: mismatched types
11   --> $DIR/issue-52820.rs:10:17
12    |
13 LL |         brains: guts.clone(),
14    |                 ^^^^^^^^^^^^
15    |                 |
16    |                 expected struct `std::string::String`, found &str
17    |                 help: try using a conversion method: `guts.to_string()`
18
19 error: aborting due to 2 previous errors
20
21 For more information about this error, try `rustc --explain E0308`.