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