We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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(); | ^
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
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
Currently fails to parse with syn because we consider the braced macro expression a statement terminator, same as rustc <=1.56.
The text was updated successfully, but these errors were encountered: