]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-47380.stderr
Rollup merge of #60487 - GuillaumeGomez:fix-search-sidebar-width-colors, r=Dylan-DPC
[rust.git] / src / test / ui / issues / issue-47380.stderr
1 error[E0369]: binary operation `+` cannot be applied to type `&str`
2   --> $DIR/issue-47380.rs:3:35
3    |
4 LL |     println!("🦀🦀🦀🦀🦀"); let _a = b + ", World!";
5    |                                      - ^ ---------- &str
6    |                                      | |
7    |                                      | `+` cannot be used to concatenate two `&str` strings
8    |                                      &str
9 help: `to_owned()` can be used to create an owned `String` from a string reference. String concatenation appends the string on the right to the string on the left and may require reallocation. This requires ownership of the string on the left
10    |
11 LL |     println!("🦀🦀🦀🦀🦀"); let _a = b.to_owned() + ", World!";
12    |                                      ^^^^^^^^^^^^
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0369`.