about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/manual_find.stderr
blob: a4e7878a247c15d6c38d44943f258026258fe444 (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
error: manual implementation of `Iterator::find`
  --> tests/ui/manual_find.rs:5:5
   |
LL | /     for s in strings {
LL | |
LL | |
LL | |         if s == String::new() {
...  |
LL | |     None
   | |________^ help: replace with an iterator: `strings.into_iter().find(|s| s == String::new())`
   |
   = note: you may need to dereference some variables
   = note: `-D clippy::manual-find` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::manual_find)]`

error: manual implementation of `Iterator::find`
  --> tests/ui/manual_find.rs:16:5
   |
LL | /     for (s, _) in arr {
LL | |
LL | |
LL | |         if s == String::new() {
...  |
LL | |     None
   | |________^ help: replace with an iterator: `arr.into_iter().map(|(s, _)| s).find(|s| s == String::new())`
   |
   = note: you may need to dereference some variables

error: aborting due to 2 previous errors