Preserve None-delimited groups inside format args

This commit is contained in:
David Tolnay 2024-10-31 21:02:21 -07:00
parent d1a8254ee5
commit 2b16098823
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -142,6 +142,13 @@ fn parse_error_attribute<'a>(attrs: &mut Attrs<'a>, attr: &'a Attribute) -> Resu
fn parse_token_expr(input: ParseStream, mut begin_expr: bool) -> Result<TokenStream> {
let mut tokens = Vec::new();
while !input.is_empty() {
if input.peek(token::Group) {
let group: TokenTree = input.parse()?;
tokens.push(group);
begin_expr = false;
continue;
}
if begin_expr && input.peek(Token![.]) {
if input.peek2(Ident) {
input.parse::<Token![.]>()?;