mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 08:57:30 +00:00
22 lines
639 B
Text
22 lines
639 B
Text
error: calling `.extend(_.chars())`
|
|
--> $DIR/string_extend.rs:26:5
|
|
|
|
|
26 | s.extend(abc.chars());
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: try this: `s.push_str(abc)`
|
|
|
|
|
= note: `-D clippy::string-extend-chars` implied by `-D warnings`
|
|
|
|
error: calling `.extend(_.chars())`
|
|
--> $DIR/string_extend.rs:29:5
|
|
|
|
|
29 | s.extend("abc".chars());
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `s.push_str("abc")`
|
|
|
|
error: calling `.extend(_.chars())`
|
|
--> $DIR/string_extend.rs:32:5
|
|
|
|
|
32 | s.extend(def.chars());
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: try this: `s.push_str(&def)`
|
|
|
|
error: aborting due to 3 previous errors
|
|
|