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

No warning for unused function using impl Trait on beta and nightly #54754

Closed
jonas-schievink opened this issue Oct 2, 2018 · 5 comments · Fixed by #54810
Closed

No warning for unused function using impl Trait on beta and nightly #54754

jonas-schievink opened this issue Oct 2, 2018 · 5 comments · Fixed by #54810
Assignees
Labels
A-diagnostics Area: Messages for errors, warnings, and lints A-lints Area: Lints (warnings about flaws in source code) such as unused_mut. P-high High priority regression-from-stable-to-beta Performance or correctness regression from stable to beta. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.
Milestone

Comments

@jonas-schievink
Copy link
Contributor

The following code only warns that f is unused on stable, not on beta or nightly:

trait Trait {}
impl<T> Trait for T {}

fn f() -> impl Trait {}

(apologies if this is a duplicate, but a quick search didn't turn anything up)

@estebank estebank added A-lints Area: Lints (warnings about flaws in source code) such as unused_mut. A-diagnostics Area: Messages for errors, warnings, and lints regression-from-stable-to-beta Performance or correctness regression from stable to beta. labels Oct 2, 2018
@jonas-schievink
Copy link
Contributor Author

This has appeared between 63d6649 and d41f21f (commits in that range).

Likely culprit is #53545 (cc @FelixMcFelix). It introduces a new reachability level to rustc (ReachableFromImplTrait), which marks any function with an impl Trait return type with that level. Maybe the level required by the lint to consider an item reachable needs to be higher than that?

@FelixMcFelix
Copy link
Contributor

Yeah, the likely fix for this is to create a query for lints that removes all levels under AccessLevel::Reachable, or manually strip the entries each time. The former probably makes more sense. I wasn't sure we'd need to do this at the time, it shouldn't take too long.

@pietroalbini pietroalbini added I-nominated T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. labels Oct 4, 2018
@pietroalbini pietroalbini added this to the 1.30 milestone Oct 4, 2018
@jonas-schievink
Copy link
Contributor Author

I've implemented a more minimal fix at #54810. It should be safe to backport to beta, if this is wanted at all.

@pnkfelix pnkfelix self-assigned this Oct 4, 2018
@pnkfelix
Copy link
Member

pnkfelix commented Oct 4, 2018

(assigning self just to make sure everything gets followed up on here)

@pnkfelix pnkfelix added P-high High priority and removed I-nominated labels Oct 4, 2018
@pnkfelix
Copy link
Member

pnkfelix commented Oct 4, 2018

tagged as P-high since it was a regression.

bors added a commit that referenced this issue Oct 7, 2018
Fix dead code lint for functions using impl Trait

Fixes #54754

This is a minimal fix that doesn't add any new queries or touches unnecessary code. Please nominate for beta backport if wanted.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-diagnostics Area: Messages for errors, warnings, and lints A-lints Area: Lints (warnings about flaws in source code) such as unused_mut. P-high High priority regression-from-stable-to-beta Performance or correctness regression from stable to beta. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

5 participants