rust/tests/ui/issues/issue-47377.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
597 B
Plaintext
Raw Normal View History

2019-12-10 21:03:13 +00:00
error[E0369]: cannot add `&str` to `&str`
--> $DIR/issue-47377.rs:4:14
2018-01-13 11:43:18 +00:00
|
2018-02-23 00:42:32 +00:00
LL | let _a = b + ", World!";
2022-01-19 00:38:06 +00:00
| - ^ ---------- &str
| | |
| | `+` cannot be used to concatenate two `&str` strings
| &str
|
2022-01-19 00:32:58 +00:00
= note: string concatenation requires an owned `String` on the left
2022-01-19 00:38:06 +00:00
help: create an owned `String` from a string reference
|
LL | let _a = b.to_owned() + ", World!";
| +++++++++++
2018-01-13 11:43:18 +00:00
error: aborting due to 1 previous error
2018-01-13 11:43:18 +00:00
2018-03-03 14:59:40 +00:00
For more information about this error, try `rustc --explain E0369`.