summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/bytes_count_to_len.stderr
blob: db0bb4099de9f99696728d92ff816fe8845bc3f0 (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
error: using long and hard to read `.bytes().count()`
  --> $DIR/bytes_count_to_len.rs:7:13
   |
LL |     let _ = String::from("foo").bytes().count();
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider calling `.len()` instead: `String::from("foo").len()`
   |
   = note: `-D clippy::bytes-count-to-len` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::bytes_count_to_len)]`

error: using long and hard to read `.bytes().count()`
  --> $DIR/bytes_count_to_len.rs:10:13
   |
LL |     let _ = s1.bytes().count();
   |             ^^^^^^^^^^^^^^^^^^ help: consider calling `.len()` instead: `s1.len()`

error: using long and hard to read `.bytes().count()`
  --> $DIR/bytes_count_to_len.rs:13:13
   |
LL |     let _ = "foo".bytes().count();
   |             ^^^^^^^^^^^^^^^^^^^^^ help: consider calling `.len()` instead: `"foo".len()`

error: using long and hard to read `.bytes().count()`
  --> $DIR/bytes_count_to_len.rs:16:13
   |
LL |     let _ = s2.bytes().count();
   |             ^^^^^^^^^^^^^^^^^^ help: consider calling `.len()` instead: `s2.len()`

error: aborting due to 4 previous errors