diff options
| author | bors <bors@rust-lang.org> | 2024-10-21 06:13:34 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-10-21 06:13:34 +0000 |
| commit | 1d0dad5eb330214e6cff1408289d426878ba2ba6 (patch) | |
| tree | 76d7b8b7f0b359751bdd419a1792f8c753e03899 | |
| parent | 69b088626c097e64e86a165e40c631e17b9d4009 (diff) | |
| parent | d8b2f9364d527a50462114df955072219fda2079 (diff) | |
| download | rust-1d0dad5eb330214e6cff1408289d426878ba2ba6.tar.gz rust-1d0dad5eb330214e6cff1408289d426878ba2ba6.zip | |
Auto merge of #131988 - matthiaskrgr:rollup-tx173wn, r=matthiaskrgr
Rollup of 4 pull requests Successful merges: - #126588 (Added more scenarios where comma to be removed in the function arg) - #131728 (bootstrap: extract builder cargo to its own module) - #131968 (Rip out old effects var handling code from traits) - #131981 (Remove the `BoundConstness::NotConst` variant) r? `@ghost` `@rustbot` modify labels: rollup
| -rw-r--r-- | clippy_lints/src/implied_bounds_in_impls.rs | 9 | ||||
| -rw-r--r-- | clippy_utils/src/ty.rs | 15 |
2 files changed, 1 insertions, 23 deletions
diff --git a/clippy_lints/src/implied_bounds_in_impls.rs b/clippy_lints/src/implied_bounds_in_impls.rs index f4c00d8287d..00f83237224 100644 --- a/clippy_lints/src/implied_bounds_in_impls.rs +++ b/clippy_lints/src/implied_bounds_in_impls.rs @@ -190,15 +190,6 @@ fn is_same_generics<'tcx>( .enumerate() .skip(1) // skip `Self` implicit arg .all(|(arg_index, arg)| { - if [ - implied_by_generics.host_effect_index, - implied_generics.host_effect_index, - ] - .contains(&Some(arg_index)) - { - // skip host effect params in determining whether generics are same - return true; - } if let Some(ty) = arg.as_type() { if let &ty::Param(ty::ParamTy { index, .. }) = ty.kind() // `index == 0` means that it's referring to `Self`, diff --git a/clippy_utils/src/ty.rs b/clippy_utils/src/ty.rs index 21793f761d9..07c3d0eada0 100644 --- a/clippy_utils/src/ty.rs +++ b/clippy_utils/src/ty.rs @@ -274,23 +274,10 @@ pub fn implements_trait_with_env_from_iter<'tcx>( .map(|arg| arg.into().unwrap_or_else(|| infcx.next_ty_var(DUMMY_SP).into())) .collect::<Vec<_>>(); - // If an effect arg was not specified, we need to specify it. - let effect_arg = if tcx - .generics_of(trait_id) - .host_effect_index - .is_some_and(|x| args.get(x - 1).is_none()) - { - Some(GenericArg::from(callee_id.map_or(tcx.consts.true_, |def_id| { - tcx.expected_host_effect_param_for_body(def_id) - }))) - } else { - None - }; - let trait_ref = TraitRef::new( tcx, trait_id, - [GenericArg::from(ty)].into_iter().chain(args).chain(effect_arg), + [GenericArg::from(ty)].into_iter().chain(args), ); debug_assert_matches!( |
