Skip to content
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

NewLint: unused tuple element #13975

Open
SpriteOvO opened this issue Jan 9, 2025 · 1 comment
Open

NewLint: unused tuple element #13975

SpriteOvO opened this issue Jan 9, 2025 · 1 comment
Labels
A-lint Area: New lints

Comments

@SpriteOvO
Copy link
Contributor

SpriteOvO commented Jan 9, 2025

What it does

Detecting if any element in a tuple variable is unused.

Advantage

  • If a new element is added, other places that use this tuple may forget to update the use of new elements.

Drawbacks

  • It can be a little noisy.
  • It cannot be ignored by adding a prefix underscore, but only using #[allow] or #[expect].

Base on that, this lint probably should be in the pedantic category.

Example

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);
  |         ^ 
@SpriteOvO SpriteOvO added the A-lint Area: New lints label Jan 9, 2025
@GuillaumeGomez
Copy link
Member

That sounds like an extension of dead_code in rustc and not something clippy should do.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-lint Area: New lints
Projects
None yet
Development

No branches or pull requests

2 participants