2019-08-09 21:15:49 +00:00
|
|
|
error: methods called `new` usually return `Self`
|
2020-07-29 23:41:12 +00:00
|
|
|
--> $DIR/methods.rs:105:5
|
2019-08-09 21:15:49 +00:00
|
|
|
|
|
|
|
|
LL | / fn new() -> i32 {
|
|
|
|
LL | | 0
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::new-ret-no-self` implied by `-D warnings`
|
|
|
|
|
2020-10-18 11:09:06 +00:00
|
|
|
error: called `filter(..).next()` on an `Iterator`. This is more succinctly expressed by calling `.find(..)` instead.
|
2020-07-29 23:41:12 +00:00
|
|
|
--> $DIR/methods.rs:126:13
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | let _ = v.iter().filter(|&x| {
|
|
|
|
| _____________^
|
|
|
|
LL | | *x < 0
|
|
|
|
LL | | }
|
|
|
|
LL | | ).next();
|
|
|
|
| |___________________________^
|
2020-10-23 07:49:47 +00:00
|
|
|
|
|
|
|
|
= note: `-D clippy::filter-next` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2020-10-31 19:40:56 +00:00
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|