Improve diagnostic on {_} in format string

This commit is contained in:
David Tolnay 2024-11-04 22:00:42 -05:00
parent 4a79e0121e
commit 58cc36e69f
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82
2 changed files with 6 additions and 4 deletions

View file

@ -78,7 +78,7 @@ impl Display<'_> {
let formatvar = match &member {
MemberUnraw::Unnamed(index) => IdentUnraw::new(format_ident!("__field{}", index)),
MemberUnraw::Named(ident) => {
if user_named_args.contains(ident) {
if user_named_args.contains(ident) || ident == "_" {
// Refers to a named argument written by the user, not to field.
out += &ident.to_string();
continue;