We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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.