diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-03-21 12:05:08 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-21 12:05:08 +0100 |
| commit | 300d3fb2fd1ef83409c7ae6daa378acdfc3bfe2c (patch) | |
| tree | 4a20e13d598d263cf6574625ed72a439d1bcc29d /src | |
| parent | 697b02031121d0bc9a215469f541eeca2f643328 (diff) | |
| parent | 5fae66592494d37aa9b7c3add8c0e6077e0833f7 (diff) | |
| download | rust-300d3fb2fd1ef83409c7ae6daa378acdfc3bfe2c.tar.gz rust-300d3fb2fd1ef83409c7ae6daa378acdfc3bfe2c.zip | |
Rollup merge of #122799 - estebank:issue-122569, r=fee1-dead
Replace closures with `_` when suggesting fully qualified path for method call
```
error[E0283]: type annotations needed
--> $DIR/into-inference-needs-type.rs:12:10
|
LL | .into()?;
| ^^^^
|
= note: cannot satisfy `_: From<...>`
= note: required for `FilterMap<...>` to implement `Into<_>`
help: try using a fully qualified path to specify the expected types
|
LL ~ let list = <FilterMap<Map<std::slice::Iter<'_, &str>, _>, _> as Into<T>>::into(vec
LL | .iter()
LL | .map(|s| s.strip_prefix("t"))
LL ~ .filter_map(Option::Some))?;
|
```
Fix #122569.
Diffstat (limited to 'src')
| -rw-r--r-- | src/tools/clippy/clippy_lints/src/box_default.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tools/clippy/clippy_lints/src/box_default.rs b/src/tools/clippy/clippy_lints/src/box_default.rs index 779ae03c464..66206d1a059 100644 --- a/src/tools/clippy/clippy_lints/src/box_default.rs +++ b/src/tools/clippy/clippy_lints/src/box_default.rs @@ -70,7 +70,9 @@ impl LateLintPass<'_> for BoxDefault { "try", if is_plain_default(cx, arg_path) || given_type(cx, expr) { "Box::default()".into() - } else if let Some(arg_ty) = cx.typeck_results().expr_ty(arg).make_suggestable(cx.tcx, true) { + } else if let Some(arg_ty) = + cx.typeck_results().expr_ty(arg).make_suggestable(cx.tcx, true, None) + { // Check if we can copy from the source expression in the replacement. // We need the call to have no argument (see `explicit_default_type`). if inner_call_args.is_empty() |
