Skip to content

Commit 913f597

Browse files
committed
infer: use derive more
Signed-off-by: David Wood <[email protected]>
1 parent f8b628b commit 913f597

File tree

4 files changed

+46
-49
lines changed

4 files changed

+46
-49
lines changed

compiler/rustc_error_messages/locales/en-US/infer.ftl

+3-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,9 @@ infer_region_explanation = {$pref_kind ->
164164
}
165165
166166
infer_mismatched_static_lifetime = incompatible lifetime on type
167-
infer_msl_impl_note = ...does not necessarily outlive the static lifetime introduced by the compatible `impl`
167+
infer_does_not_outlive_static_from_impl = ...does not necessarily outlive the static lifetime introduced by the compatible `impl`
168+
infer_implicit_static_lifetime_note = this has an implicit `'static` lifetime requirement
169+
infer_implicit_static_lifetime_suggestion = consider relaxing the implicit `'static` requirement
168170
infer_msl_introduces_static = introduces a `'static` lifetime requirement
169171
infer_msl_unmet_req = because this has an unmet lifetime requirement
170172
infer_msl_trait_note = this has an implicit `'static` lifetime requirement

compiler/rustc_infer/src/errors/mod.rs

+29-42
Original file line numberDiff line numberDiff line change
@@ -459,47 +459,34 @@ impl AddToDiagnostic for IntroducesStaticBecauseUnmetLifetimeReq {
459459
}
460460
}
461461

462-
pub struct ImplNote {
463-
pub impl_span: Option<Span>,
464-
}
465-
466-
impl AddToDiagnostic for ImplNote {
467-
fn add_to_diagnostic_with<F>(self, diag: &mut Diagnostic, _: F)
468-
where
469-
F: Fn(&mut Diagnostic, SubdiagnosticMessage) -> SubdiagnosticMessage,
470-
{
471-
match self.impl_span {
472-
Some(span) => diag.span_note(span, fluent::infer::msl_impl_note),
473-
None => diag.note(fluent::infer::msl_impl_note),
474-
};
475-
}
476-
}
477-
478-
pub enum TraitSubdiag {
479-
Note { span: Span },
480-
Sugg { span: Span },
462+
// FIXME(#100717): replace with a `Option<Span>` when subdiagnostic supports that
463+
#[derive(Subdiagnostic)]
464+
pub enum DoesNotOutliveStaticFromImpl {
465+
#[note(infer::does_not_outlive_static_from_impl)]
466+
Spanned {
467+
#[primary_span]
468+
span: Span,
469+
},
470+
#[note(infer::does_not_outlive_static_from_impl)]
471+
Unspanned,
481472
}
482473

483-
// FIXME(#100717) used in `Vec<TraitSubdiag>` so requires eager translation/list support
484-
impl AddToDiagnostic for TraitSubdiag {
485-
fn add_to_diagnostic_with<F>(self, diag: &mut Diagnostic, _: F)
486-
where
487-
F: Fn(&mut Diagnostic, SubdiagnosticMessage) -> SubdiagnosticMessage,
488-
{
489-
match self {
490-
TraitSubdiag::Note { span } => {
491-
diag.span_note(span, "this has an implicit `'static` lifetime requirement");
492-
}
493-
TraitSubdiag::Sugg { span } => {
494-
diag.span_suggestion_verbose(
495-
span,
496-
"consider relaxing the implicit `'static` requirement",
497-
" + '_".to_owned(),
498-
rustc_errors::Applicability::MaybeIncorrect,
499-
);
500-
}
501-
}
502-
}
474+
#[derive(Subdiagnostic)]
475+
pub enum ImplicitStaticLifetimeSubdiag {
476+
#[note(infer::implicit_static_lifetime_note)]
477+
Note {
478+
#[primary_span]
479+
span: Span,
480+
},
481+
#[suggestion_verbose(
482+
infer::implicit_static_lifetime_suggestion,
483+
code = " + '_",
484+
applicability = "maybe-incorrect"
485+
)]
486+
Sugg {
487+
#[primary_span]
488+
span: Span,
489+
},
503490
}
504491

505492
#[derive(Diagnostic)]
@@ -512,7 +499,7 @@ pub struct MismatchedStaticLifetime<'a> {
512499
#[subdiagnostic]
513500
pub expl: Option<note_and_explain::RegionExplanation<'a>>,
514501
#[subdiagnostic]
515-
pub impl_note: ImplNote,
516-
#[subdiagnostic]
517-
pub trait_subdiags: Vec<TraitSubdiag>,
502+
pub does_not_outlive_static_from_impl: DoesNotOutliveStaticFromImpl,
503+
#[subdiagnostic(eager)]
504+
pub implicit_static_lifetimes: Vec<ImplicitStaticLifetimeSubdiag>,
518505
}

compiler/rustc_infer/src/infer/error_reporting/nice_region_error/mismatched_static_lifetime.rs

+12-6
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
//! to hold.
33
44
use crate::errors::{note_and_explain, IntroducesStaticBecauseUnmetLifetimeReq};
5-
use crate::errors::{ImplNote, MismatchedStaticLifetime, TraitSubdiag};
5+
use crate::errors::{
6+
DoesNotOutliveStaticFromImpl, ImplicitStaticLifetimeSubdiag, MismatchedStaticLifetime,
7+
};
68
use crate::infer::error_reporting::nice_region_error::NiceRegionError;
79
use crate::infer::lexical_region_resolve::RegionResolutionError;
810
use crate::infer::{SubregionOrigin, TypeTrace};
@@ -56,7 +58,7 @@ impl<'a, 'tcx> NiceRegionError<'a, 'tcx> {
5658
note_and_explain::SuffixKind::Continues,
5759
);
5860
let mut impl_span = None;
59-
let mut trait_subdiags = Vec::new();
61+
let mut implicit_static_lifetimes = Vec::new();
6062
if let Some(impl_node) = self.tcx().hir().get_if_local(*impl_def_id) {
6163
// If an impl is local, then maybe this isn't what they want. Try to
6264
// be as helpful as possible with implicit lifetimes.
@@ -90,10 +92,12 @@ impl<'a, 'tcx> NiceRegionError<'a, 'tcx> {
9092
// Otherwise, point at all implicit static lifetimes
9193

9294
for span in &traits {
93-
trait_subdiags.push(TraitSubdiag::Note { span: *span });
95+
implicit_static_lifetimes
96+
.push(ImplicitStaticLifetimeSubdiag::Note { span: *span });
9497
// It would be nice to put this immediately under the above note, but they get
9598
// pushed to the end.
96-
trait_subdiags.push(TraitSubdiag::Sugg { span: span.shrink_to_hi() });
99+
implicit_static_lifetimes
100+
.push(ImplicitStaticLifetimeSubdiag::Sugg { span: span.shrink_to_hi() });
97101
}
98102
}
99103
} else {
@@ -105,8 +109,10 @@ impl<'a, 'tcx> NiceRegionError<'a, 'tcx> {
105109
cause_span: cause.span,
106110
unmet_lifetime_reqs: multispan_subdiag,
107111
expl,
108-
impl_note: ImplNote { impl_span },
109-
trait_subdiags,
112+
does_not_outlive_static_from_impl: impl_span
113+
.map(|span| DoesNotOutliveStaticFromImpl::Spanned { span })
114+
.unwrap_or(DoesNotOutliveStaticFromImpl::Unspanned),
115+
implicit_static_lifetimes,
110116
};
111117
let reported = self.tcx().sess.emit_err(err);
112118
Some(reported)

compiler/rustc_macros/src/diagnostics/subdiagnostic.rs

+2
Original file line numberDiff line numberDiff line change
@@ -309,6 +309,8 @@ impl<'parent, 'a> SubdiagnosticDeriveVariantBuilder<'parent, 'a> {
309309
report_error_if_not_applied_to_span(attr, &info)?;
310310

311311
let binding = info.binding.binding.clone();
312+
// FIXME(#100717): support `Option<Span>` on `primary_span` like in the
313+
// diagnostic derive
312314
self.span_field.set_once(binding, span);
313315
}
314316

0 commit comments

Comments
 (0)