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

Unused variable warning shouldn't apply to parameters of default trait implementations #14027

Closed
zwarich opened this issue May 8, 2014 · 2 comments
Labels
A-lints Area: Lints (warnings about flaws in source code) such as unused_mut.

Comments

@zwarich
Copy link

zwarich commented May 8, 2014

Currently, code like

trait Useless {
    fn foo(&self, descriptive_name: uint) { }
}

struct A;

impl Useless for A {
    fn foo(&self, descriptive_name: uint) { println!("{}", descriptive_name); }
}

fn main() {
    let a = A;
    a.foo(1);
}

will trigger an unused variable warning:

test.rs:2:19: 2:35 warning: unused variable: `descriptive_name`, #[warn(unused_variable)] on by default
test.rs:2     fn foo(&self, descriptive_name: uint) { }
                            ^~~~~~~~~~~~~~~~

It seems like using a descriptive name for a parameter should be allowed, even if the default implementation doesn't use the parameter at all.

@reem
Copy link
Contributor

reem commented Mar 2, 2015

Visiting for triage.

Personally, I think this is a special case and shouldn't be exempted, since you can can have exceptions to lints with #[allow].

@huonw
Copy link
Member

huonw commented Jan 8, 2016

This is a dupe of #26487, which was closed: #26487 (comment).

@huonw huonw closed this as completed Jan 8, 2016
flip1995 pushed a commit to flip1995/rust that referenced this issue Feb 20, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
…r` out of pedantic (rust-lang#14027)

While extending the `option_map_or_err_ok` lint (warn by default,
"style") to recognize η-expanded forms of `Ok`, as in

```rust
    // Should suggest `opt.ok_or("foobar")`
   let _ = opt.map_or(Err("foobar"), |x| Ok(x));
```

I discovered that the `manual_ok_or` lint (allow by default, "pedantic")
already covered exactly the cases handled by `option_map_or_err_ok`,
including the one I was adding. Apparently, `option_map_or_err_ok` was
added without realizing that the lint already existed under the
`manual_ok_or` name. As a matter of fact, artifacts of this second lint
were even present in the first lint `stderr` file and went unnoticed for
more than a year.

This PR:
- deprecates `option_map_or_err_ok` with a message saying to use
`manual_ok_or`
- moves `manual_ok_or` from "pedantic" to "style" (the category in which
`option_map_or_err_ok` was)

In addition, I think that this lint, which is short, machine applicable,
and leads to shorter and clearer code with less arguments (`Ok`
disappears) and the removal of one level of call (`Err(x)` is replaced
by `x`), is a reason by itself to be in "style".

changelog: [`option_map_or_err_ok` and `manual_ok_or`]: move
`manual_ok_or` from "pedantic" to "style", and deprecate the redundant
style lint `option_map_or_err_ok`.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-lints Area: Lints (warnings about flaws in source code) such as unused_mut.
Projects
None yet
Development

No branches or pull requests

3 participants