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
This suprised me:
impl foo { // This method is private priv fn bar() { } } priv impl foo { // This method is public even though the impl is private. fn bar() { } }
priv impl doesn't do anything.
priv impl
The text was updated successfully, but these errors were encountered:
My understanding is that impls just shouldn't allow pub/priv on the entire impl, so #3985 supersedes this.
pub
priv
Reopen if I've misunderstood.
Sorry, something went wrong.
Auto merge of rust-lang#3452 - findseat:master, r=saethlin
81cab97
chore: fix some typos
pcwalton
No branches or pull requests
This suprised me:
priv impl
doesn't do anything.The text was updated successfully, but these errors were encountered: