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
#[feature(struct_variant)]; enum Foo { Bar { x: int, y: int } } fn main() { println!("{:?}", Bar { x: 1, y: 2 }); }
outputs
Bar(1, 2)
The text was updated successfully, but these errors were encountered:
#8930
Sorry, something went wrong.
Auto merge of rust-lang#10063 - chansuke:issue-9702, r=Alexendoo
4a09068
add [`permissions_set_readonly_false`] rust-lang#9702 Add slight modification on [this PR](rust-lang/rust-clippy#9744). --- changelog: New lint [`permissions_set_readonly_false`] [rust-lang#10063](rust-lang/rust-clippy#10063) <!-- changelog_checked -->
No branches or pull requests
outputs
The text was updated successfully, but these errors were encountered: