summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/issue-52820.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/suggestions/issue-52820.stderr')
-rw-r--r--tests/ui/suggestions/issue-52820.stderr23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/ui/suggestions/issue-52820.stderr b/tests/ui/suggestions/issue-52820.stderr
new file mode 100644
index 000000000..09269ed4e
--- /dev/null
+++ b/tests/ui/suggestions/issue-52820.stderr
@@ -0,0 +1,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`.