2021-03-08 19:05:13 +00:00
|
|
|
error: redundant closure
|
2021-03-08 18:59:58 +00:00
|
|
|
--> $DIR/eta.rs:32:27
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let a = Some(1u8).map(|a| foo(a));
|
2021-03-08 19:05:13 +00:00
|
|
|
| ^^^^^^^^^^ help: replace the closure with the function itself: `foo`
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
|
|
|
= note: `-D clippy::redundant-closure` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2021-03-08 19:05:13 +00:00
|
|
|
error: redundant closure
|
2021-03-08 18:59:58 +00:00
|
|
|
--> $DIR/eta.rs:33:10
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | meta(|a| foo(a));
|
2021-03-08 19:05:13 +00:00
|
|
|
| ^^^^^^^^^^ help: replace the closure with the function itself: `foo`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2021-03-08 19:05:13 +00:00
|
|
|
error: redundant closure
|
2021-03-08 18:59:58 +00:00
|
|
|
--> $DIR/eta.rs:37:40
|
|
|
|
|
|
|
|
|
LL | let _: Option<Vec<u8>> = true.then(|| vec![]); // special case vec!
|
2021-03-08 19:05:13 +00:00
|
|
|
| ^^^^^^^^^ help: replace the closure with `Vec::new`: `std::vec::Vec::new`
|
2021-03-08 18:59:58 +00:00
|
|
|
|
2020-12-13 14:17:47 +00:00
|
|
|
error: this expression borrows a reference (`&u8`) that is immediately dereferenced by the compiler
|
2021-03-08 18:59:58 +00:00
|
|
|
--> $DIR/eta.rs:39:21
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | all(&[1, 2, 3], &&2, |x, y| below(x, y)); //is adjusted
|
2017-09-16 02:27:46 +00:00
|
|
|
| ^^^ help: change this to: `&2`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::needless-borrow` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2021-03-08 19:05:13 +00:00
|
|
|
error: redundant closure
|
2021-03-08 18:59:58 +00:00
|
|
|
--> $DIR/eta.rs:46:27
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let e = Some(1u8).map(|a| generic(a));
|
2021-03-08 19:05:13 +00:00
|
|
|
| ^^^^^^^^^^^^^^ help: replace the closure with the function itself: `generic`
|
2017-05-17 12:19:44 +00:00
|
|
|
|
2021-03-08 19:05:13 +00:00
|
|
|
error: redundant closure
|
2021-05-21 19:42:57 +00:00
|
|
|
--> $DIR/eta.rs:92:51
|
2019-02-10 11:58:51 +00:00
|
|
|
|
|
2019-02-10 20:23:04 +00:00
|
|
|
LL | let e = Some(TestStruct { some_ref: &i }).map(|a| a.foo());
|
2021-03-08 19:05:13 +00:00
|
|
|
| ^^^^^^^^^^^ help: replace the closure with the method itself: `TestStruct::foo`
|
2019-05-16 06:25:39 +00:00
|
|
|
|
|
2019-05-16 18:18:07 +00:00
|
|
|
= note: `-D clippy::redundant-closure-for-method-calls` implied by `-D warnings`
|
2019-02-10 11:58:51 +00:00
|
|
|
|
2021-03-08 19:05:13 +00:00
|
|
|
error: redundant closure
|
2021-05-21 19:42:57 +00:00
|
|
|
--> $DIR/eta.rs:94:51
|
2019-02-10 11:58:51 +00:00
|
|
|
|
|
2019-02-10 20:23:04 +00:00
|
|
|
LL | let e = Some(TestStruct { some_ref: &i }).map(|a| a.trait_foo());
|
2021-03-08 19:05:13 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^ help: replace the closure with the method itself: `TestTrait::trait_foo`
|
2019-02-10 11:58:51 +00:00
|
|
|
|
2021-03-08 19:05:13 +00:00
|
|
|
error: redundant closure
|
2021-05-21 19:42:57 +00:00
|
|
|
--> $DIR/eta.rs:97:42
|
2019-02-10 11:58:51 +00:00
|
|
|
|
|
2019-02-10 20:23:04 +00:00
|
|
|
LL | let e = Some(&mut vec![1, 2, 3]).map(|v| v.clear());
|
2021-03-08 19:05:13 +00:00
|
|
|
| ^^^^^^^^^^^^^ help: replace the closure with the method itself: `std::vec::Vec::clear`
|
2019-02-10 11:58:51 +00:00
|
|
|
|
2021-03-08 19:05:13 +00:00
|
|
|
error: redundant closure
|
2021-05-21 19:42:57 +00:00
|
|
|
--> $DIR/eta.rs:102:29
|
2019-02-10 11:58:51 +00:00
|
|
|
|
|
|
|
|
LL | let e = Some("str").map(|s| s.to_string());
|
2021-03-08 19:05:13 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^ help: replace the closure with the method itself: `std::string::ToString::to_string`
|
2019-02-10 11:58:51 +00:00
|
|
|
|
2021-03-08 19:05:13 +00:00
|
|
|
error: redundant closure
|
2021-05-21 19:42:57 +00:00
|
|
|
--> $DIR/eta.rs:104:27
|
2019-02-10 11:58:51 +00:00
|
|
|
|
|
|
|
|
LL | let e = Some('a').map(|s| s.to_uppercase());
|
2021-03-08 19:05:13 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^ help: replace the closure with the method itself: `char::to_uppercase`
|
2019-02-10 11:58:51 +00:00
|
|
|
|
2021-03-08 19:05:13 +00:00
|
|
|
error: redundant closure
|
2021-05-21 19:42:57 +00:00
|
|
|
--> $DIR/eta.rs:107:65
|
2019-02-10 11:58:51 +00:00
|
|
|
|
|
2019-02-10 20:23:04 +00:00
|
|
|
LL | let e: std::vec::Vec<char> = vec!['a', 'b', 'c'].iter().map(|c| c.to_ascii_uppercase()).collect();
|
2021-03-08 19:05:13 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace the closure with the method itself: `char::to_ascii_uppercase`
|
2019-02-10 11:58:51 +00:00
|
|
|
|
2021-03-08 19:05:13 +00:00
|
|
|
error: redundant closure
|
2021-05-21 19:42:57 +00:00
|
|
|
--> $DIR/eta.rs:190:27
|
2019-04-20 20:20:14 +00:00
|
|
|
|
|
|
|
|
LL | let a = Some(1u8).map(|a| foo_ptr(a));
|
2021-03-08 19:05:13 +00:00
|
|
|
| ^^^^^^^^^^^^^^ help: replace the closure with the function itself: `foo_ptr`
|
2019-04-20 20:20:14 +00:00
|
|
|
|
2021-03-08 19:05:13 +00:00
|
|
|
error: redundant closure
|
2021-05-21 19:42:57 +00:00
|
|
|
--> $DIR/eta.rs:195:27
|
2019-04-20 20:20:14 +00:00
|
|
|
|
|
|
|
|
LL | let a = Some(1u8).map(|a| closure(a));
|
2021-03-08 19:05:13 +00:00
|
|
|
| ^^^^^^^^^^^^^^ help: replace the closure with the function itself: `closure`
|
2019-04-20 20:20:14 +00:00
|
|
|
|
2021-07-03 03:25:55 +00:00
|
|
|
error: redundant closure
|
|
|
|
--> $DIR/eta.rs:227:28
|
|
|
|
|
|
|
|
|
LL | x.into_iter().for_each(|x| add_to_res(x));
|
|
|
|
| ^^^^^^^^^^^^^^^^^ help: replace the closure with the function itself: `&mut add_to_res`
|
|
|
|
|
|
|
|
error: redundant closure
|
|
|
|
--> $DIR/eta.rs:228:28
|
|
|
|
|
|
|
|
|
LL | y.into_iter().for_each(|x| add_to_res(x));
|
|
|
|
| ^^^^^^^^^^^^^^^^^ help: replace the closure with the function itself: `&mut add_to_res`
|
|
|
|
|
|
|
|
error: redundant closure
|
|
|
|
--> $DIR/eta.rs:229:28
|
|
|
|
|
|
|
|
|
LL | z.into_iter().for_each(|x| add_to_res(x));
|
|
|
|
| ^^^^^^^^^^^^^^^^^ help: replace the closure with the function itself: `add_to_res`
|
|
|
|
|
|
|
|
error: redundant closure
|
|
|
|
--> $DIR/eta.rs:236:21
|
|
|
|
|
|
|
|
|
LL | Some(1).map(|n| closure(n));
|
|
|
|
| ^^^^^^^^^^^^^^ help: replace the closure with the function itself: `&mut closure`
|
|
|
|
|
|
|
|
error: aborting due to 17 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|