Rename inline_fluent! to msg!

This commit is contained in:
Jonathan Brouwer 2026-02-14 13:47:52 +01:00
parent 3f808f29e6
commit 018a5efcf7
No known key found for this signature in database
GPG key ID: 13619B051B673C52
64 changed files with 647 additions and 840 deletions

View file

@ -1,7 +1,7 @@
use rustc_errors::codes::*;
use rustc_errors::{
Applicability, Diag, DiagCtxtHandle, DiagMessage, Diagnostic, ElidedLifetimeInPathSubdiag,
EmissionGuarantee, IntoDiagArg, Level, LintDiagnostic, MultiSpan, Subdiagnostic, inline_fluent,
EmissionGuarantee, IntoDiagArg, Level, LintDiagnostic, MultiSpan, Subdiagnostic, msg,
};
use rustc_macros::{Diagnostic, LintDiagnostic, Subdiagnostic};
use rustc_span::source_map::Spanned;
@ -1371,16 +1371,16 @@ impl Subdiagnostic for FoundItemConfigureOut {
let key = "feature".into();
let value = feature.into_diag_arg(&mut None);
let msg = diag.dcx.eagerly_translate_to_string(
inline_fluent!("the item is gated behind the `{$feature}` feature"),
msg!("the item is gated behind the `{$feature}` feature"),
[(&key, &value)].into_iter(),
);
multispan.push_span_label(span, msg);
}
ItemWas::CfgOut { span } => {
multispan.push_span_label(span, inline_fluent!("the item is gated here"));
multispan.push_span_label(span, msg!("the item is gated here"));
}
}
diag.span_note(multispan, inline_fluent!("found an item that was configured out"));
diag.span_note(multispan, msg!("found an item that was configured out"));
}
}