summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/methods.stderr
blob: e32b3b336af65fe988e1a96628e235c1ee2b1e76 (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
error: methods called `new` usually return `Self`
  --> $DIR/methods.rs:103:5
   |
LL | /     fn new() -> i32 {
LL | |         0
LL | |     }
   | |_____^
   |
   = note: `-D clippy::new-ret-no-self` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::new_ret_no_self)]`

error: called `filter(..).next()` on an `Iterator`. This is more succinctly expressed by calling `.find(..)` instead
  --> $DIR/methods.rs:124:13
   |
LL |       let _ = v.iter().filter(|&x| {
   |  _____________^
LL | |                                 *x < 0
LL | |                             }
LL | |                    ).next();
   | |___________________________^
   |
   = note: `-D clippy::filter-next` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::filter_next)]`

error: aborting due to 2 previous errors