-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
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
Add passes to mark stability and must-use attributes as used #14407
Labels
A-attributes
Area: Attributes (`#[…]`, `#![…]`)
A-lints
Area: Lints (warnings about flaws in source code) such as unused_mut.
C-enhancement
Category: An issue proposing an enhancement or a PR with one.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
Comments
Triage: no change that I'm aware of. |
Triage: still no change that I'm aware of. |
Triage: no changes I'm aware of. |
Closing as the unused attribute handling has been rewritten in #87739 and should now handle stability and must_use attributes. |
bors
added a commit
to rust-lang-ci/rust
that referenced
this issue
Jun 5, 2023
fix: Fix renames of locals being broken in macro calls Fixes rust-lang/rust-analyzer#14379
flip1995
pushed a commit
to flip1995/rust
that referenced
this issue
Apr 3, 2025
…panics_doc` (rust-lang#14407) Implements rust-lang/rust-clippy#11436 (comment) > [...] I'd really like to be able to (reusing some above examples), > > ``` rust > /// Do something > pub fn string_from_byte_stream() -> String { > let bytes = get_valid_utf8(); > #[expect(clippy::missing_panics_doc_ok, reason="caller can't do anything about this")] > String::from_utf8(bytes).expect("`get_valid_utf8()` always returns valid UTF-8") > } > ``` Also fixes an issue where if the first panic is in a `const` context disables the lint for the rest of the function The first commit is just moving code around changelog: [`missing_panics_doc`]: `#[allow]` and `#[expect]` can now be used within the function body to ignore individual panics
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
A-attributes
Area: Attributes (`#[…]`, `#![…]`)
A-lints
Area: Lints (warnings about flaws in source code) such as unused_mut.
C-enhancement
Category: An issue proposing an enhancement or a PR with one.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
The unused-attribute lint globally whitelists stability and must-use attributes as they're only looked for on-demand. There should be another pass added to mark them used only in the correct contexts.
The text was updated successfully, but these errors were encountered: