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
rustc --pretty normal src/test/run-pass/block-expr-precedence.rs
The last line,
if (true) { 12 };;; -num;
is pretty-printed as
if (true) { 12 } -num;
which, when parsed, hits the precedence issue described in the test's comment.
The text was updated successfully, but these errors were encountered:
843767a
Merge pull request rust-lang#674 from ids1024/off_t
7387331
Redox: Use c_long instead of usize for off_t
Merge pull request rust-lang#674 from davidtwco/await-desugaring-update
f06816e
Update await desugaring
Add forward mode fadd and free debug (rust-lang#674)
f0f64db
No branches or pull requests
The last line,
is pretty-printed as
which, when parsed, hits the precedence issue described in the test's comment.
The text was updated successfully, but these errors were encountered: