rust-clippy/tests/ui/string_extend.stderr

23 lines
639 B
Text
Raw Normal View History

2017-10-10 04:56:49 +00:00
error: calling `.extend(_.chars())`
2018-12-10 05:27:19 +00:00
--> $DIR/string_extend.rs:25:5
2017-10-10 04:56:49 +00:00
|
2018-12-10 05:27:19 +00:00
25 | s.extend(abc.chars());
2017-10-10 04:56:49 +00:00
| ^^^^^^^^^^^^^^^^^^^^^ help: try this: `s.push_str(abc)`
|
= note: `-D clippy::string-extend-chars` implied by `-D warnings`
2017-10-10 04:56:49 +00:00
error: calling `.extend(_.chars())`
2018-12-10 05:27:19 +00:00
--> $DIR/string_extend.rs:28:5
2017-10-10 04:56:49 +00:00
|
2018-12-10 05:27:19 +00:00
28 | s.extend("abc".chars());
2017-10-10 04:56:49 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `s.push_str("abc")`
error: calling `.extend(_.chars())`
2018-12-10 05:27:19 +00:00
--> $DIR/string_extend.rs:31:5
2017-10-10 04:56:49 +00:00
|
2018-12-10 05:27:19 +00:00
31 | s.extend(def.chars());
2017-10-10 04:56:49 +00:00
| ^^^^^^^^^^^^^^^^^^^^^ help: try this: `s.push_str(&def)`
2018-01-16 16:06:27 +00:00
error: aborting due to 3 previous errors