summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/string_extend.stderr
blob: 34b43290147e20e94b4d12e75786641ebbd4d659 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
error: calling `.extend(_.chars())`
  --> $DIR/string_extend.rs:18:5
   |
LL |     s.extend(abc.chars());
   |     ^^^^^^^^^^^^^^^^^^^^^ help: try: `s.push_str(abc)`
   |
   = note: `-D clippy::string-extend-chars` implied by `-D warnings`

error: calling `.extend(_.chars())`
  --> $DIR/string_extend.rs:21:5
   |
LL |     s.extend("abc".chars());
   |     ^^^^^^^^^^^^^^^^^^^^^^^ help: try: `s.push_str("abc")`

error: calling `.extend(_.chars())`
  --> $DIR/string_extend.rs:24:5
   |
LL |     s.extend(def.chars());
   |     ^^^^^^^^^^^^^^^^^^^^^ help: try: `s.push_str(&def)`

error: calling `.extend(_.chars())`
  --> $DIR/string_extend.rs:34:5
   |
LL |     s.extend(abc[0..2].chars());
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `s.push_str(&abc[0..2])`

error: aborting due to 4 previous errors