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
Detecting if any element in a tuple variable is unused.
#[allow]
#[expect]
Base on that, this lint probably should be in the pedantic category.
pedantic
fn main() { let a = (1, 2); println!("{}", a.0); }
Emit warning
warning: unused tuple element : `a.1` --> src/main.rs:2:9 | 2 | let a = (1, 2); | ^
The text was updated successfully, but these errors were encountered:
That sounds like an extension of dead_code in rustc and not something clippy should do.
dead_code
Sorry, something went wrong.
No branches or pull requests
What it does
Detecting if any element in a tuple variable is unused.
Advantage
Drawbacks
#[allow]
or#[expect]
.Base on that, this lint probably should be in the
pedantic
category.Example
Emit warning
The text was updated successfully, but these errors were encountered: