2017-10-10 04:56:49 +00:00
|
|
|
error: calling `.extend(_.chars())`
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/string_extend.rs:26:5
|
2017-10-10 04:56:49 +00:00
|
|
|
|
|
2018-10-06 16:18:06 +00:00
|
|
|
26 | s.extend(abc.chars());
|
2017-10-10 04:56:49 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: try this: `s.push_str(abc)`
|
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::string-extend-chars` implied by `-D warnings`
|
2017-10-10 04:56:49 +00:00
|
|
|
|
|
|
|
error: calling `.extend(_.chars())`
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/string_extend.rs:29:5
|
2017-10-10 04:56:49 +00:00
|
|
|
|
|
2018-10-06 16:18:06 +00:00
|
|
|
29 | s.extend("abc".chars());
|
2017-10-10 04:56:49 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `s.push_str("abc")`
|
|
|
|
|
|
|
|
error: calling `.extend(_.chars())`
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/string_extend.rs:32:5
|
2017-10-10 04:56:49 +00:00
|
|
|
|
|
2018-10-06 16:18:06 +00:00
|
|
|
32 | 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
|
|
|
|
|