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