]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/suggestions/issue-52820.stderr
Use multispan suggestions more often
[rust.git] / src / test / ui / suggestions / issue-52820.stderr
index ece784de3e2a1b2ecd3f862fffc3d20c208a39a8..62c04584d3c75176b2fa0ba37a993c44a73a6bd3 100644 (file)
@@ -2,10 +2,12 @@ error[E0308]: mismatched types
   --> $DIR/issue-52820.rs:9:9
    |
 LL |         guts,
-   |         ^^^^
-   |         |
-   |         expected struct `String`, found `&str`
-   |         help: try using a conversion method: `guts: guts.to_string()`
+   |         ^^^^ expected struct `String`, found `&str`
+   |
+help: try using a conversion method
+   |
+LL |         guts: guts.to_string(),
+   |         ^^^^^     ^^^^^^^^^^^^
 
 error[E0308]: mismatched types
   --> $DIR/issue-52820.rs:10:17