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
In https://doc.rust-lang.org/rust-by-example/types/alias.html , it says
// Use an attribute to silence warning. #[allow(non_camel_case_types)] type u64_t = u64; // TODO ^ Try removing the attribute
but removing the attribute does not result in the expected warning about a non-CamelCase type.
What should this page say and/or what would be a better example of this?
The text was updated successfully, but these errors were encountered:
I believe this is a duplicate of #1328. The root cause here is that the warning is not being shown in the output.
Sorry, something went wrong.
Agreed. Thanks!
No branches or pull requests
In https://doc.rust-lang.org/rust-by-example/types/alias.html , it says
but removing the attribute does not result in the expected warning about a non-CamelCase type.
What should this page say and/or what would be a better example of this?
The text was updated successfully, but these errors were encountered: