]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-47377.stderr
Rollup merge of #59539 - GuillaumeGomez:rustdoc-infinite-recursion, r=eddyb
[rust.git] / src / test / ui / issues / issue-47377.stderr
1 error[E0369]: binary operation `+` cannot be applied to type `&str`
2   --> $DIR/issue-47377.rs:4:14
3    |
4 LL |      let _a = b + ", World!";
5    |               - ^ ---------- &str
6    |               | |
7    |               | `+` can't 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 |      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`.