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
macro_rules! test { ($($t: expr)*) => { i32 } } type Test = test!{ 123 };
macro_rules! test { ($($t: expr)*) => { i32 } } type Test = test!{ 123 };;
This unfortunately breaks the code since ;; is invalid.
;;
The text was updated successfully, but these errors were encountered:
This is similar to #2290. Once rust-lang/rust#46835 gets merged this will be fixed by rustup update nightly && cargo install --force rustfmt-nightly.
rustup update nightly && cargo install --force rustfmt-nightly
Sorry, something went wrong.
Closed via rust-lang/rust#46835 and #2297.
No branches or pull requests
Before
After
This unfortunately breaks the code since
;;
is invalid.The text was updated successfully, but these errors were encountered: