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.
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
Issue #890 took care of the simple case, but this more complex case is still broken.
fn g() { (a = 10).x; }
becomes
fn g() { a = 10.x; }
which does not parse.
The text was updated successfully, but these errors were encountered:
Even worse is
fn g() { (a = b).x; }
pretty-printing as
fn g() { a = b.x; }
which does parse but has different semantics.
Sorry, something went wrong.
8c83ea5
Ensure parens are wrapped around composite exprs in call/index/field pos
197f360
This is needed to fix the second example in issue #919
Write dummy return value on unimplemented simd_{insert,extract}
10ee80c
Fixes rust-lang#919
Add cbrtf (rust-lang#919)
21274aa
remove redundant feature declaration const_fn_transmute in lib.rs (ru…
3af6719
…st-lang#919)
Turn on assertion reachability checks by default (rust-lang#919)
c809f97
No branches or pull requests
Issue #890 took care of the simple case, but this more complex case is still broken.
becomes
which does not parse.
The text was updated successfully, but these errors were encountered: