about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--compiler/rustc_infer/src/errors/mod.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/compiler/rustc_infer/src/errors/mod.rs b/compiler/rustc_infer/src/errors/mod.rs
index 911381b367f..5eedca78489 100644
--- a/compiler/rustc_infer/src/errors/mod.rs
+++ b/compiler/rustc_infer/src/errors/mod.rs
@@ -453,10 +453,7 @@ pub enum TraitSubdiag {
     Sugg { span: Span },
 }
 
-// FIXME We can't rely on Vec<Subdiag> working well at the moment,
-// as only the args from one of the subdiagnostics will actually be used.
-// This results in an incorrect diagnostic if more than two subdiags with the same slug are added.
-// Use untranslated messages for now.
+// FIXME(#100717) used in `Vec<TraitSubdiag>` so requires eager translation/list support
 impl AddSubdiagnostic for TraitSubdiag {
     fn add_to_diagnostic(self, diag: &mut rustc_errors::Diagnostic) {
         match self {