We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8075e4 commit d7e07c0Copy full SHA for d7e07c0
compiler/rustc_query_system/src/error.rs
@@ -21,7 +21,7 @@ impl SessionDiagnostic<'_> for Cycle {
21
diag.code(rustc_errors::DiagnosticId::Error("E0391".to_string()));
22
let upper_stack_len = self.upper_stack_info.len();
23
for (span, desc) in self.upper_stack_info.into_iter() {
24
- // FIXME: use fluent translation
+ // FIXME(#100717): use fluent translation
25
diag.span_note(span, &format!("...which requires {}...", desc));
26
}
27
diag.set_arg("stack_bottom", self.stack_bottom);
0 commit comments