rust/src/test/ui/span/issue-39018.stderr

21 lines
893 B
Plaintext
Raw Normal View History

error[E0369]: binary operation `+` cannot be applied to type `&str`
--> $DIR/issue-39018.rs:12:13
|
12 | let x = "Hello " + "World!";
2017-03-28 06:06:01 -05:00
| ^^^^^^^^^^^^^^^^^^^ `+` can't be used to concatenate two `&str` strings
2017-05-16 08:12:24 -05:00
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
2017-06-28 01:16:04 -05:00
|
12 | let x = "Hello ".to_owned() + "World!";
2017-06-28 01:16:04 -05:00
| ^^^^^^^^^^^^^^^^^^^
error[E0369]: binary operation `+` cannot be applied to type `World`
2017-11-20 06:13:27 -06:00
--> $DIR/issue-39018.rs:18:13
|
2017-11-20 06:13:27 -06:00
18 | let y = World::Hello + World::Goodbye;
2017-03-28 06:06:01 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: an implementation of `std::ops::Add` might be missing for `World`
error: aborting due to 2 previous errors