-
Notifications
You must be signed in to change notification settings - Fork 6
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
Implicit grouping of macro fragments not working #14
Comments
de-vri-es
pushed a commit
that referenced
this issue
Jul 4, 2020
See: rust-lang/rust#74036 Fixes #14.
de-vri-es
pushed a commit
that referenced
this issue
Jul 4, 2020
See: rust-lang/rust#74036 Fixes #14.
de-vri-es
pushed a commit
that referenced
this issue
Jul 4, 2020
See: rust-lang/rust#74036 Fixes #14.
de-vri-es
pushed a commit
that referenced
this issue
Jul 4, 2020
See: rust-lang/rust#74036 Fixes #14.
de-vri-es
pushed a commit
that referenced
this issue
Jul 4, 2020
See: rust-lang/rust#74036 Fixes #14.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This test should pass, but fails.
It somehow evaluates
1 + 1 * 1 + 1
instead of(1 + 1) * (1 + 1)
, as if we're using a C preprocessor instead of Rust. 👀The text was updated successfully, but these errors were encountered: