Skip to content

Commit 910d538

Browse files
committed
Auto merge of #4008 - g-bartoszek:boxed-fnmut, r=phansch
Do not trigger redundant_closure for non-function types fixes #3898 Added a check for the entity being called in the closure body to be a FnDef. This way lint does not trigger for ADTs (Box) but I'm not sure if it's correct and not too restrictive. <!-- Thank you for making Clippy better! We're collecting our changelog from pull request descriptions. If your PR only updates to the latest nightly, you can leave the `changelog` entry as `none`. Otherwise, please write a short comment explaining your change. If your PR fixes an issue, you can add "fixes #issue_number" into this PR description. This way the issue will be automatically closed when your PR is merged. If you added a new lint, here's a checklist for things that will be checked during review or continuous integration. - [ ] Followed [lint naming conventions][lint_naming] - [ ] Added passing UI tests (including committed `.stderr` file) - [ ] `cargo test` passes locally - [ ] Executed `util/dev update_lints` - [ ] Added lint documentation - [ ] Run `cargo fmt` Note that you can skip the above if you are just opening a WIP PR in order to get feedback. Delete this line and everything above before opening your PR --> changelog: Fix false positive in `redundant_closure` pertaining to non-function types
2 parents 6a0105e + 4f801a2 commit 910d538

File tree

4 files changed

+49
-1
lines changed

4 files changed

+49
-1
lines changed

clippy_lints/src/eta_reduction.rs

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
use if_chain::if_chain;
2+
use matches::matches;
23
use rustc::hir::*;
34
use rustc::lint::{in_external_macro, LateContext, LateLintPass, LintArray, LintContext, LintPass};
45
use rustc::ty::{self, Ty};
@@ -65,6 +66,9 @@ fn check_closure(cx: &LateContext<'_, '_>, expr: &Expr) {
6566
if !(is_adjusted(cx, ex) || args.iter().any(|arg| is_adjusted(cx, arg)));
6667

6768
let fn_ty = cx.tables.expr_ty(caller);
69+
70+
if matches!(fn_ty.sty, ty::FnDef(_, _) | ty::FnPtr(_) | ty::Closure(_, _));
71+
6872
if !type_is_unsafe_function(cx, fn_ty);
6973

7074
if compare_inputs(&mut iter_input_pats(decl, body), &mut args.into_iter());

tests/ui/eta.fixed

+16
Original file line numberDiff line numberDiff line change
@@ -133,3 +133,19 @@ fn divergent(_: u8) -> ! {
133133
fn generic<T>(_: T) -> u8 {
134134
0
135135
}
136+
137+
fn passes_fn_mut(mut x: Box<dyn FnMut()>) {
138+
requires_fn_once(|| x());
139+
}
140+
fn requires_fn_once<T: FnOnce()>(_: T) {}
141+
142+
fn test_redundant_closure_with_function_pointer() {
143+
type FnPtrType = fn(u8);
144+
let foo_ptr: FnPtrType = foo;
145+
let a = Some(1u8).map(foo_ptr);
146+
}
147+
148+
fn test_redundant_closure_with_another_closure() {
149+
let closure = |a| println!("{}", a);
150+
let a = Some(1u8).map(closure);
151+
}

tests/ui/eta.rs

+16
Original file line numberDiff line numberDiff line change
@@ -133,3 +133,19 @@ fn divergent(_: u8) -> ! {
133133
fn generic<T>(_: T) -> u8 {
134134
0
135135
}
136+
137+
fn passes_fn_mut(mut x: Box<dyn FnMut()>) {
138+
requires_fn_once(|| x());
139+
}
140+
fn requires_fn_once<T: FnOnce()>(_: T) {}
141+
142+
fn test_redundant_closure_with_function_pointer() {
143+
type FnPtrType = fn(u8);
144+
let foo_ptr: FnPtrType = foo;
145+
let a = Some(1u8).map(|a| foo_ptr(a));
146+
}
147+
148+
fn test_redundant_closure_with_another_closure() {
149+
let closure = |a| println!("{}", a);
150+
let a = Some(1u8).map(|a| closure(a));
151+
}

tests/ui/eta.stderr

+13-1
Original file line numberDiff line numberDiff line change
@@ -68,5 +68,17 @@ error: redundant closure found
6868
LL | let e: std::vec::Vec<char> = vec!['a', 'b', 'c'].iter().map(|c| c.to_ascii_uppercase()).collect();
6969
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove closure as shown: `char::to_ascii_uppercase`
7070

71-
error: aborting due to 11 previous errors
71+
error: redundant closure found
72+
--> $DIR/eta.rs:145:27
73+
|
74+
LL | let a = Some(1u8).map(|a| foo_ptr(a));
75+
| ^^^^^^^^^^^^^^ help: remove closure as shown: `foo_ptr`
76+
77+
error: redundant closure found
78+
--> $DIR/eta.rs:150:27
79+
|
80+
LL | let a = Some(1u8).map(|a| closure(a));
81+
| ^^^^^^^^^^^^^^ help: remove closure as shown: `closure`
82+
83+
error: aborting due to 13 previous errors
7284

0 commit comments

Comments
 (0)