Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Parse dot and question mark after curly braced macro invocation #1068

Closed
dtolnay opened this issue Sep 23, 2021 · 0 comments · Fixed by #1070
Closed

Parse dot and question mark after curly braced macro invocation #1068

dtolnay opened this issue Sep 23, 2021 · 0 comments · Fixed by #1070
Labels

Comments

@dtolnay
Copy link
Owner

dtolnay commented Sep 23, 2021

The legality of this syntax changed in rust-lang/rust#88690.

Example upstream test case: https://github.com/rust-lang/rust/blob/bf642323d621dcefeef1d8ab4711aae36e357615/src/test/ui/parser/macro-braces-dot-question.rs

vec! { 1, 2, 3 }.len();
write! { vec![], "" }?;
println!{""}
[0]; // separate statement, not indexing into the result of println.

Currently fails to parse with syn because we consider the braced macro expression a statement terminator, same as rustc <=1.56.

error: expected expression
 --> dev/main.rs:6:21
  |
6 |     vec! { 1, 2, 3 }.len();
  |                     ^
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant