Fix fallback fmt expression parser hang

This commit is contained in:
David Tolnay 2024-11-09 22:18:07 -08:00
parent 5b36e375c2
commit 591a44d9a3
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82
2 changed files with 21 additions and 0 deletions

View file

@ -193,6 +193,8 @@ fn fallback_explicit_named_args(input: ParseStream) -> Result<FmtArguments> {
let ident = input.call(Ident::parse_any)?;
input.parse::<Token![=]>()?;
args.named.insert(ident);
} else {
input.parse::<TokenTree>()?;
}
}