2024-04-18 21:57:07 -04:00
|
|
|
use rustc_data_structures::fx::FxIndexSet;
|
2024-04-20 11:22:06 -04:00
|
|
|
use rustc_data_structures::unord::UnordSet;
|
2024-04-18 21:57:07 -04:00
|
|
|
use rustc_errors::{Applicability, LintDiagnostic};
|
2024-04-18 21:13:35 -04:00
|
|
|
use rustc_hir as hir;
|
|
|
|
use rustc_hir::def::DefKind;
|
|
|
|
use rustc_hir::def_id::{DefId, LocalDefId};
|
2024-04-20 11:22:06 -04:00
|
|
|
use rustc_macros::LintDiagnostic;
|
2024-05-23 23:53:56 +01:00
|
|
|
use rustc_middle::bug;
|
2024-04-20 11:22:06 -04:00
|
|
|
use rustc_middle::middle::resolve_bound_vars::ResolvedArg;
|
2024-04-18 21:13:35 -04:00
|
|
|
use rustc_middle::ty::{
|
|
|
|
self, Ty, TyCtxt, TypeSuperVisitable, TypeVisitable, TypeVisitableExt, TypeVisitor,
|
|
|
|
};
|
2024-08-26 06:46:56 +00:00
|
|
|
use rustc_session::lint::FutureIncompatibilityReason;
|
2024-04-21 11:27:27 -04:00
|
|
|
use rustc_session::{declare_lint, declare_lint_pass};
|
2024-08-26 06:46:56 +00:00
|
|
|
use rustc_span::edition::Edition;
|
2024-06-27 15:27:52 -04:00
|
|
|
use rustc_span::Span;
|
2024-04-18 21:13:35 -04:00
|
|
|
|
|
|
|
use crate::{fluent_generated as fluent, LateContext, LateLintPass};
|
|
|
|
|
|
|
|
declare_lint! {
|
2024-04-21 11:27:27 -04:00
|
|
|
/// The `impl_trait_overcaptures` lint warns against cases where lifetime
|
|
|
|
/// capture behavior will differ in edition 2024.
|
|
|
|
///
|
|
|
|
/// In the 2024 edition, `impl Trait`s will capture all lifetimes in scope,
|
|
|
|
/// rather than just the lifetimes that are mentioned in the bounds of the type.
|
|
|
|
/// Often these sets are equal, but if not, it means that the `impl Trait` may
|
|
|
|
/// cause erroneous borrow-checker errors.
|
|
|
|
///
|
|
|
|
/// ### Example
|
|
|
|
///
|
|
|
|
/// ```rust,compile_fail
|
|
|
|
/// # #![deny(impl_trait_overcaptures)]
|
|
|
|
/// # use std::fmt::Display;
|
|
|
|
/// let mut x = vec![];
|
|
|
|
/// x.push(1);
|
|
|
|
///
|
|
|
|
/// fn test(x: &Vec<i32>) -> impl Display {
|
|
|
|
/// x[0]
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// let element = test(&x);
|
|
|
|
/// x.push(2);
|
|
|
|
/// println!("{element}");
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// {{produces}}
|
|
|
|
///
|
|
|
|
/// ### Explanation
|
|
|
|
///
|
|
|
|
/// In edition < 2024, the returned `impl Display` doesn't capture the
|
|
|
|
/// lifetime from the `&Vec<i32>`, so the vector can be mutably borrowed
|
|
|
|
/// while the `impl Display` is live.
|
|
|
|
///
|
|
|
|
/// To fix this, we can explicitly state that the `impl Display` doesn't
|
2024-06-05 16:18:52 -04:00
|
|
|
/// capture any lifetimes, using `impl Display + use<>`.
|
2024-04-18 21:13:35 -04:00
|
|
|
pub IMPL_TRAIT_OVERCAPTURES,
|
2024-04-20 11:22:06 -04:00
|
|
|
Allow,
|
2024-04-21 11:27:27 -04:00
|
|
|
"`impl Trait` will capture more lifetimes than possibly intended in edition 2024",
|
2024-08-26 06:46:56 +00:00
|
|
|
@future_incompatible = FutureIncompatibleInfo {
|
|
|
|
reason: FutureIncompatibilityReason::EditionSemanticsChange(Edition::Edition2024),
|
|
|
|
reference: "<https://doc.rust-lang.org/nightly/edition-guide/rust-2024/rpit-lifetime-capture.html>",
|
|
|
|
};
|
2024-04-18 21:13:35 -04:00
|
|
|
}
|
|
|
|
|
2024-04-20 11:22:06 -04:00
|
|
|
declare_lint! {
|
2024-04-21 11:27:27 -04:00
|
|
|
/// The `impl_trait_redundant_captures` lint warns against cases where use of the
|
|
|
|
/// precise capturing `use<...>` syntax is not needed.
|
|
|
|
///
|
|
|
|
/// In the 2024 edition, `impl Trait`s will capture all lifetimes in scope.
|
|
|
|
/// If precise-capturing `use<...>` syntax is used, and the set of parameters
|
|
|
|
/// that are captures are *equal* to the set of parameters in scope, then
|
|
|
|
/// the syntax is redundant, and can be removed.
|
|
|
|
///
|
|
|
|
/// ### Example
|
|
|
|
///
|
|
|
|
/// ```rust,compile_fail
|
2024-07-12 06:12:24 -04:00
|
|
|
/// # #![feature(lifetime_capture_rules_2024)]
|
2024-04-21 11:27:27 -04:00
|
|
|
/// # #![deny(impl_trait_redundant_captures)]
|
2024-06-05 16:18:52 -04:00
|
|
|
/// fn test<'a>(x: &'a i32) -> impl Sized + use<'a> { x }
|
2024-04-21 11:27:27 -04:00
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// {{produces}}
|
|
|
|
///
|
|
|
|
/// ### Explanation
|
|
|
|
///
|
|
|
|
/// To fix this, remove the `use<'a>`, since the lifetime is already captured
|
|
|
|
/// since it is in scope.
|
2024-04-20 11:22:06 -04:00
|
|
|
pub IMPL_TRAIT_REDUNDANT_CAPTURES,
|
|
|
|
Warn,
|
2024-04-21 11:27:27 -04:00
|
|
|
"redundant precise-capturing `use<...>` syntax on an `impl Trait`",
|
2024-04-20 11:22:06 -04:00
|
|
|
}
|
|
|
|
|
2024-04-18 21:13:35 -04:00
|
|
|
declare_lint_pass!(
|
2024-04-18 21:19:22 -04:00
|
|
|
/// Lint for opaque types that will begin capturing in-scope but unmentioned lifetimes
|
|
|
|
/// in edition 2024.
|
2024-04-20 11:22:06 -04:00
|
|
|
ImplTraitOvercaptures => [IMPL_TRAIT_OVERCAPTURES, IMPL_TRAIT_REDUNDANT_CAPTURES]
|
2024-04-18 21:13:35 -04:00
|
|
|
);
|
|
|
|
|
|
|
|
impl<'tcx> LateLintPass<'tcx> for ImplTraitOvercaptures {
|
2024-04-20 11:22:06 -04:00
|
|
|
fn check_item(&mut self, cx: &LateContext<'tcx>, it: &'tcx hir::Item<'tcx>) {
|
|
|
|
match &it.kind {
|
|
|
|
hir::ItemKind::Fn(..) => check_fn(cx.tcx, it.owner_id.def_id),
|
|
|
|
_ => {}
|
2024-04-18 21:13:35 -04:00
|
|
|
}
|
2024-04-20 11:22:06 -04:00
|
|
|
}
|
2024-04-18 21:13:35 -04:00
|
|
|
|
2024-04-20 11:22:06 -04:00
|
|
|
fn check_impl_item(&mut self, cx: &LateContext<'tcx>, it: &'tcx hir::ImplItem<'tcx>) {
|
|
|
|
match &it.kind {
|
|
|
|
hir::ImplItemKind::Fn(_, _) => check_fn(cx.tcx, it.owner_id.def_id),
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|
2024-04-18 21:13:35 -04:00
|
|
|
|
2024-04-20 11:22:06 -04:00
|
|
|
fn check_trait_item(&mut self, cx: &LateContext<'tcx>, it: &'tcx hir::TraitItem<'tcx>) {
|
|
|
|
match &it.kind {
|
|
|
|
hir::TraitItemKind::Fn(_, _) => check_fn(cx.tcx, it.owner_id.def_id),
|
|
|
|
_ => {}
|
2024-04-18 21:13:35 -04:00
|
|
|
}
|
2024-04-20 11:22:06 -04:00
|
|
|
}
|
|
|
|
}
|
2024-04-18 21:13:35 -04:00
|
|
|
|
2024-04-20 11:22:06 -04:00
|
|
|
fn check_fn(tcx: TyCtxt<'_>, parent_def_id: LocalDefId) {
|
|
|
|
let sig = tcx.fn_sig(parent_def_id).instantiate_identity();
|
|
|
|
|
|
|
|
let mut in_scope_parameters = FxIndexSet::default();
|
|
|
|
// Populate the in_scope_parameters list first with all of the generics in scope
|
|
|
|
let mut current_def_id = Some(parent_def_id.to_def_id());
|
|
|
|
while let Some(def_id) = current_def_id {
|
|
|
|
let generics = tcx.generics_of(def_id);
|
|
|
|
for param in &generics.own_params {
|
|
|
|
in_scope_parameters.insert(param.def_id);
|
|
|
|
}
|
|
|
|
current_def_id = generics.parent;
|
2024-04-18 21:13:35 -04:00
|
|
|
}
|
2024-04-20 11:22:06 -04:00
|
|
|
|
|
|
|
// Then visit the signature to walk through all the binders (incl. the late-bound
|
|
|
|
// vars on the function itself, which we need to count too).
|
|
|
|
sig.visit_with(&mut VisitOpaqueTypes {
|
|
|
|
tcx,
|
|
|
|
parent_def_id,
|
|
|
|
in_scope_parameters,
|
|
|
|
seen: Default::default(),
|
|
|
|
});
|
2024-04-18 21:13:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
struct VisitOpaqueTypes<'tcx> {
|
|
|
|
tcx: TyCtxt<'tcx>,
|
|
|
|
parent_def_id: LocalDefId,
|
|
|
|
in_scope_parameters: FxIndexSet<DefId>,
|
|
|
|
seen: FxIndexSet<LocalDefId>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'tcx> TypeVisitor<TyCtxt<'tcx>> for VisitOpaqueTypes<'tcx> {
|
|
|
|
fn visit_binder<T: TypeVisitable<TyCtxt<'tcx>>>(
|
|
|
|
&mut self,
|
|
|
|
t: &ty::Binder<'tcx, T>,
|
|
|
|
) -> Self::Result {
|
2024-04-18 21:19:22 -04:00
|
|
|
// When we get into a binder, we need to add its own bound vars to the scope.
|
2024-04-18 21:13:35 -04:00
|
|
|
let mut added = vec![];
|
|
|
|
for arg in t.bound_vars() {
|
|
|
|
let arg: ty::BoundVariableKind = arg;
|
|
|
|
match arg {
|
2024-04-21 11:27:27 -04:00
|
|
|
ty::BoundVariableKind::Region(ty::BoundRegionKind::BrNamed(def_id, ..))
|
|
|
|
| ty::BoundVariableKind::Ty(ty::BoundTyKind::Param(def_id, _)) => {
|
2024-04-18 21:13:35 -04:00
|
|
|
added.push(def_id);
|
|
|
|
let unique = self.in_scope_parameters.insert(def_id);
|
|
|
|
assert!(unique);
|
|
|
|
}
|
2024-04-20 11:22:06 -04:00
|
|
|
_ => {
|
|
|
|
self.tcx.dcx().span_delayed_bug(
|
|
|
|
self.tcx.def_span(self.parent_def_id),
|
|
|
|
format!("unsupported bound variable kind: {arg:?}"),
|
|
|
|
);
|
2024-04-18 21:13:35 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
t.super_visit_with(self);
|
|
|
|
|
2024-04-18 21:19:22 -04:00
|
|
|
// And remove them. The `shift_remove` should be `O(1)` since we're popping
|
|
|
|
// them off from the end.
|
2024-04-18 21:13:35 -04:00
|
|
|
for arg in added.into_iter().rev() {
|
|
|
|
self.in_scope_parameters.shift_remove(&arg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_ty(&mut self, t: Ty<'tcx>) -> Self::Result {
|
2024-04-20 11:22:06 -04:00
|
|
|
if !t.has_aliases() {
|
2024-04-18 21:13:35 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2024-04-20 11:22:06 -04:00
|
|
|
if let ty::Alias(ty::Projection, opaque_ty) = *t.kind()
|
|
|
|
&& self.tcx.is_impl_trait_in_trait(opaque_ty.def_id)
|
|
|
|
{
|
|
|
|
// visit the opaque of the RPITIT
|
|
|
|
self.tcx
|
|
|
|
.type_of(opaque_ty.def_id)
|
|
|
|
.instantiate(self.tcx, opaque_ty.args)
|
|
|
|
.visit_with(self)
|
|
|
|
} else if let ty::Alias(ty::Opaque, opaque_ty) = *t.kind()
|
2024-04-18 21:13:35 -04:00
|
|
|
&& let Some(opaque_def_id) = opaque_ty.def_id.as_local()
|
2024-04-18 21:19:22 -04:00
|
|
|
// Don't recurse infinitely on an opaque
|
2024-04-18 21:13:35 -04:00
|
|
|
&& self.seen.insert(opaque_def_id)
|
2024-04-18 21:19:22 -04:00
|
|
|
// If it's owned by this function
|
2024-04-18 21:13:35 -04:00
|
|
|
&& let opaque =
|
|
|
|
self.tcx.hir_node_by_def_id(opaque_def_id).expect_item().expect_opaque_ty()
|
|
|
|
&& let hir::OpaqueTyOrigin::FnReturn(parent_def_id) = opaque.origin
|
|
|
|
&& parent_def_id == self.parent_def_id
|
|
|
|
{
|
2024-04-18 21:19:22 -04:00
|
|
|
// Compute the set of args that are captured by the opaque...
|
2024-04-18 21:57:07 -04:00
|
|
|
let mut captured = FxIndexSet::default();
|
2024-04-18 21:13:35 -04:00
|
|
|
let variances = self.tcx.variances_of(opaque_def_id);
|
|
|
|
let mut current_def_id = Some(opaque_def_id.to_def_id());
|
|
|
|
while let Some(def_id) = current_def_id {
|
|
|
|
let generics = self.tcx.generics_of(def_id);
|
2024-04-18 21:19:22 -04:00
|
|
|
for param in &generics.own_params {
|
|
|
|
// A param is captured if it's invariant.
|
2024-04-18 21:13:35 -04:00
|
|
|
if variances[param.index as usize] != ty::Invariant {
|
|
|
|
continue;
|
|
|
|
}
|
2024-04-18 21:19:22 -04:00
|
|
|
// We need to turn all `ty::Param`/`ConstKind::Param` and
|
|
|
|
// `ReEarlyParam`/`ReBound` into def ids.
|
2024-04-18 21:13:35 -04:00
|
|
|
captured.insert(extract_def_id_from_arg(
|
|
|
|
self.tcx,
|
|
|
|
generics,
|
|
|
|
opaque_ty.args[param.index as usize],
|
|
|
|
));
|
|
|
|
}
|
|
|
|
current_def_id = generics.parent;
|
|
|
|
}
|
|
|
|
|
2024-04-18 21:19:22 -04:00
|
|
|
// Compute the set of in scope params that are not captured. Get their spans,
|
|
|
|
// since that's all we really care about them for emitting the diagnostic.
|
2024-04-18 21:13:35 -04:00
|
|
|
let uncaptured_spans: Vec<_> = self
|
|
|
|
.in_scope_parameters
|
|
|
|
.iter()
|
2024-04-18 21:57:07 -04:00
|
|
|
.filter(|def_id| !captured.contains(*def_id))
|
2024-04-18 21:13:35 -04:00
|
|
|
.map(|def_id| self.tcx.def_span(def_id))
|
|
|
|
.collect();
|
|
|
|
|
2024-04-20 11:22:06 -04:00
|
|
|
let opaque_span = self.tcx.def_span(opaque_def_id);
|
|
|
|
let new_capture_rules =
|
|
|
|
opaque_span.at_least_rust_2024() || self.tcx.features().lifetime_capture_rules_2024;
|
2024-04-18 21:57:07 -04:00
|
|
|
|
2024-04-20 11:22:06 -04:00
|
|
|
// If we have uncaptured args, and if the opaque doesn't already have
|
|
|
|
// `use<>` syntax on it, and we're < edition 2024, then warn the user.
|
|
|
|
if !new_capture_rules
|
2024-06-05 16:18:52 -04:00
|
|
|
&& !opaque.bounds.iter().any(|bound| matches!(bound, hir::GenericBound::Use(..)))
|
2024-04-20 11:22:06 -04:00
|
|
|
&& !uncaptured_spans.is_empty()
|
|
|
|
{
|
2024-04-18 21:57:07 -04:00
|
|
|
let suggestion = if let Ok(snippet) =
|
|
|
|
self.tcx.sess.source_map().span_to_snippet(opaque_span)
|
|
|
|
&& snippet.starts_with("impl ")
|
|
|
|
{
|
|
|
|
let (lifetimes, others): (Vec<_>, Vec<_>) = captured
|
|
|
|
.into_iter()
|
|
|
|
.partition(|def_id| self.tcx.def_kind(*def_id) == DefKind::LifetimeParam);
|
|
|
|
// Take all lifetime params first, then all others (ty/ct).
|
|
|
|
let generics: Vec<_> = lifetimes
|
|
|
|
.into_iter()
|
|
|
|
.chain(others)
|
|
|
|
.map(|def_id| self.tcx.item_name(def_id).to_string())
|
|
|
|
.collect();
|
2024-04-18 22:04:14 -04:00
|
|
|
// Make sure that we're not trying to name any APITs
|
|
|
|
if generics.iter().all(|name| !name.starts_with("impl ")) {
|
|
|
|
Some((
|
2024-06-05 16:18:52 -04:00
|
|
|
format!(" + use<{}>", generics.join(", ")),
|
|
|
|
opaque_span.shrink_to_hi(),
|
2024-04-18 22:04:14 -04:00
|
|
|
))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
2024-04-18 21:57:07 -04:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
2024-04-20 11:22:06 -04:00
|
|
|
self.tcx.emit_node_span_lint(
|
2024-04-18 21:13:35 -04:00
|
|
|
IMPL_TRAIT_OVERCAPTURES,
|
|
|
|
self.tcx.local_def_id_to_hir_id(opaque_def_id),
|
2024-04-20 11:22:06 -04:00
|
|
|
opaque_span,
|
2024-04-18 21:13:35 -04:00
|
|
|
ImplTraitOvercapturesLint {
|
|
|
|
self_ty: t,
|
|
|
|
num_captured: uncaptured_spans.len(),
|
|
|
|
uncaptured_spans,
|
2024-04-18 21:57:07 -04:00
|
|
|
suggestion,
|
2024-04-18 21:13:35 -04:00
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
2024-04-20 11:22:06 -04:00
|
|
|
// Otherwise, if we are edition 2024, have `use<>` syntax, and
|
|
|
|
// have no uncaptured args, then we should warn to the user that
|
|
|
|
// it's redundant to capture all args explicitly.
|
|
|
|
else if new_capture_rules
|
2024-06-05 16:18:52 -04:00
|
|
|
&& let Some((captured_args, capturing_span)) =
|
|
|
|
opaque.bounds.iter().find_map(|bound| match *bound {
|
|
|
|
hir::GenericBound::Use(a, s) => Some((a, s)),
|
|
|
|
_ => None,
|
|
|
|
})
|
2024-04-20 11:22:06 -04:00
|
|
|
{
|
|
|
|
let mut explicitly_captured = UnordSet::default();
|
|
|
|
for arg in captured_args {
|
|
|
|
match self.tcx.named_bound_var(arg.hir_id()) {
|
|
|
|
Some(
|
|
|
|
ResolvedArg::EarlyBound(def_id) | ResolvedArg::LateBound(_, _, def_id),
|
|
|
|
) => {
|
2024-08-22 01:17:01 +00:00
|
|
|
if self.tcx.def_kind(self.tcx.local_parent(def_id)) == DefKind::OpaqueTy
|
|
|
|
{
|
2024-05-23 23:53:56 +01:00
|
|
|
let def_id = self
|
2024-04-20 11:22:06 -04:00
|
|
|
.tcx
|
2024-08-22 01:17:01 +00:00
|
|
|
.map_opaque_lifetime_to_parent_lifetime(def_id)
|
2024-05-23 23:53:56 +01:00
|
|
|
.opt_param_def_id(self.tcx, self.parent_def_id.to_def_id())
|
|
|
|
.expect("variable should have been duplicated from parent");
|
|
|
|
|
2024-04-20 11:22:06 -04:00
|
|
|
explicitly_captured.insert(def_id);
|
|
|
|
} else {
|
2024-08-22 01:17:01 +00:00
|
|
|
explicitly_captured.insert(def_id.to_def_id());
|
2024-04-20 11:22:06 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
self.tcx.dcx().span_delayed_bug(
|
2024-04-21 11:27:27 -04:00
|
|
|
self.tcx.hir().span(arg.hir_id()),
|
2024-04-20 11:22:06 -04:00
|
|
|
"no valid for captured arg",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if self
|
|
|
|
.in_scope_parameters
|
|
|
|
.iter()
|
|
|
|
.all(|def_id| explicitly_captured.contains(def_id))
|
|
|
|
{
|
|
|
|
self.tcx.emit_node_span_lint(
|
|
|
|
IMPL_TRAIT_REDUNDANT_CAPTURES,
|
|
|
|
self.tcx.local_def_id_to_hir_id(opaque_def_id),
|
|
|
|
opaque_span,
|
|
|
|
ImplTraitRedundantCapturesLint { capturing_span },
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2024-04-18 21:13:35 -04:00
|
|
|
|
2024-04-18 21:19:22 -04:00
|
|
|
// Walk into the bounds of the opaque, too, since we want to get nested opaques
|
|
|
|
// in this lint as well. Interestingly, one place that I expect this lint to fire
|
|
|
|
// is for `impl for<'a> Bound<Out = impl Other>`, since `impl Other` will begin
|
|
|
|
// to capture `'a` in e2024 (even though late-bound vars in opaques are not allowed).
|
2024-04-18 21:13:35 -04:00
|
|
|
for clause in
|
|
|
|
self.tcx.item_bounds(opaque_ty.def_id).iter_instantiated(self.tcx, opaque_ty.args)
|
|
|
|
{
|
|
|
|
clause.visit_with(self)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
t.super_visit_with(self);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ImplTraitOvercapturesLint<'tcx> {
|
|
|
|
uncaptured_spans: Vec<Span>,
|
|
|
|
self_ty: Ty<'tcx>,
|
|
|
|
num_captured: usize,
|
2024-04-18 21:57:07 -04:00
|
|
|
suggestion: Option<(String, Span)>,
|
2024-04-18 21:13:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> LintDiagnostic<'a, ()> for ImplTraitOvercapturesLint<'_> {
|
|
|
|
fn decorate_lint<'b>(self, diag: &'b mut rustc_errors::Diag<'a, ()>) {
|
2024-05-22 16:46:05 +02:00
|
|
|
diag.primary_message(fluent::lint_impl_trait_overcaptures);
|
2024-04-18 21:13:35 -04:00
|
|
|
diag.arg("self_ty", self.self_ty.to_string())
|
|
|
|
.arg("num_captured", self.num_captured)
|
|
|
|
.span_note(self.uncaptured_spans, fluent::lint_note)
|
|
|
|
.note(fluent::lint_note2);
|
2024-04-18 21:57:07 -04:00
|
|
|
if let Some((suggestion, span)) = self.suggestion {
|
|
|
|
diag.span_suggestion(
|
|
|
|
span,
|
|
|
|
fluent::lint_suggestion,
|
|
|
|
suggestion,
|
|
|
|
Applicability::MachineApplicable,
|
|
|
|
);
|
|
|
|
}
|
2024-04-18 21:13:35 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-20 11:22:06 -04:00
|
|
|
#[derive(LintDiagnostic)]
|
|
|
|
#[diag(lint_impl_trait_redundant_captures)]
|
|
|
|
struct ImplTraitRedundantCapturesLint {
|
|
|
|
#[suggestion(lint_suggestion, code = "", applicability = "machine-applicable")]
|
|
|
|
capturing_span: Span,
|
|
|
|
}
|
|
|
|
|
2024-04-18 21:13:35 -04:00
|
|
|
fn extract_def_id_from_arg<'tcx>(
|
|
|
|
tcx: TyCtxt<'tcx>,
|
|
|
|
generics: &'tcx ty::Generics,
|
|
|
|
arg: ty::GenericArg<'tcx>,
|
|
|
|
) -> DefId {
|
|
|
|
match arg.unpack() {
|
|
|
|
ty::GenericArgKind::Lifetime(re) => match *re {
|
|
|
|
ty::ReEarlyParam(ebr) => generics.region_param(ebr, tcx).def_id,
|
|
|
|
ty::ReBound(
|
|
|
|
_,
|
|
|
|
ty::BoundRegion { kind: ty::BoundRegionKind::BrNamed(def_id, ..), .. },
|
|
|
|
) => def_id,
|
|
|
|
_ => unreachable!(),
|
|
|
|
},
|
|
|
|
ty::GenericArgKind::Type(ty) => {
|
|
|
|
let ty::Param(param_ty) = *ty.kind() else {
|
|
|
|
bug!();
|
|
|
|
};
|
|
|
|
generics.type_param(param_ty, tcx).def_id
|
|
|
|
}
|
|
|
|
ty::GenericArgKind::Const(ct) => {
|
|
|
|
let ty::ConstKind::Param(param_ct) = ct.kind() else {
|
|
|
|
bug!();
|
|
|
|
};
|
|
|
|
generics.const_param(param_ct, tcx).def_id
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|