summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/issue-52820.stderr
blob: 09269ed4eee9983d6b2b605ac796e8162b712635 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
error[E0308]: mismatched types
  --> $DIR/issue-52820.rs:12:9
   |
LL |         guts,
   |         ^^^^ expected struct `String`, found `&str`
   |
help: try using a conversion method
   |
LL |         guts: guts.to_string(),
   |         +++++     ++++++++++++

error[E0308]: mismatched types
  --> $DIR/issue-52820.rs:13:17
   |
LL |         brains: guts.clone(),
   |                 ^^^^^-----^^
   |                 |    |
   |                 |    help: try using a conversion method: `to_string`
   |                 expected struct `String`, found `&str`

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0308`.