about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/format_collect.stderr
blob: 343e38a87b711612a393f168904c1a94d2645143 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
error: use of `format!` to build up a string from an iterator
  --> tests/ui/format_collect.rs:5:5
   |
LL |     bytes.iter().map(|b| format!("{b:02X}")).collect()
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
help: call `fold` instead
  --> tests/ui/format_collect.rs:5:18
   |
LL |     bytes.iter().map(|b| format!("{b:02X}")).collect()
   |                  ^^^
help: ... and use the `write!` macro here
  --> tests/ui/format_collect.rs:5:26
   |
LL |     bytes.iter().map(|b| format!("{b:02X}")).collect()
   |                          ^^^^^^^^^^^^^^^^^^
   = note: this can be written more efficiently by appending to a `String` directly
   = note: `-D clippy::format-collect` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::format_collect)]`

error: use of `format!` to build up a string from an iterator
  --> tests/ui/format_collect.rs:11:5
   |
LL |     bytes.iter().map(|b| {{{{{ format!("{b:02X}") }}}}}).collect()
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
help: call `fold` instead
  --> tests/ui/format_collect.rs:11:18
   |
LL |     bytes.iter().map(|b| {{{{{ format!("{b:02X}") }}}}}).collect()
   |                  ^^^
help: ... and use the `write!` macro here
  --> tests/ui/format_collect.rs:11:32
   |
LL |     bytes.iter().map(|b| {{{{{ format!("{b:02X}") }}}}}).collect()
   |                                ^^^^^^^^^^^^^^^^^^
   = note: this can be written more efficiently by appending to a `String` directly

error: use of `format!` to build up a string from an iterator
  --> tests/ui/format_collect.rs:27:5
   |
LL | /     (1..10)
LL | |
LL | |         .map(|s| {
LL | |             let y = 1;
LL | |             format!("{s} {y}")
LL | |         })
LL | |         .collect()
   | |__________________^
   |
help: call `fold` instead
  --> tests/ui/format_collect.rs:29:10
   |
LL |         .map(|s| {
   |          ^^^
help: ... and use the `write!` macro here
  --> tests/ui/format_collect.rs:31:13
   |
LL |             format!("{s} {y}")
   |             ^^^^^^^^^^^^^^^^^^
   = note: this can be written more efficiently by appending to a `String` directly

error: aborting due to 3 previous errors