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
fn main() { ret (ret m) as int + 1; } fn main() { ret (ret m as int) + 1; } fn main() { ret ret m as int + 1; } fn main() { ret ret (m as int) + 1; }
The last one is finally stable, but it clearly doesn't do the same thing as the first line.
The text was updated successfully, but these errors were encountered:
The precedence issues here are fixed, but this can't be tested within our current test framework because the code is invalid (can't cast _|_ to int).
_|_
Sorry, something went wrong.
Closing under the principle that we don't need to pretty-print ill-typed code correctly.
Merge pull request rust-lang#766 from kinseytamsin/fix-repr-c-pseudocode
e96c8b9
Fix incorrect pseudocode for #[repr(C)] struct alignment
Get VS Code working again (rust-lang#766)
ddfebe4
* Added extra config to cargo.toml * Developer documentation * Apply suggestions from code review Co-authored-by: Adrian Palacios <[email protected]> * Added lines to bookrunner cargo.toml Co-authored-by: Adrian Palacios <[email protected]>
No branches or pull requests
The last one is finally stable, but it clearly doesn't do the same thing as the first line.
The text was updated successfully, but these errors were encountered: