rust-clippy/tests/ui/methods.stderr

27 lines
861 B
Text
Raw Normal View History

error: methods called `new` usually return `Self`
2024-02-17 12:16:29 +00:00
--> tests/ui/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
2024-02-17 12:16:29 +00:00
--> tests/ui/methods.rs:124:13
2018-12-27 15:57:55 +00:00
|
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
2018-01-16 16:06:27 +00:00