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

unnecessary_operation: reduces array of generics to just generic / compiler error #9951

Open
matthiaskrgr opened this issue Nov 25, 2022 · 2 comments
Labels
C-bug Category: Clippy is not doing the correct thing I-false-positive Issue: The lint was triggered on code it shouldn't have I-suggestion-causes-error Issue: The suggestions provided by this Lint cause an ICE/error when applied

Comments

@matthiaskrgr
Copy link
Member

Summary

.

Lint Name

unnecessary_operation

Reproducer

I tried this code:

#[derive(Clone, Default)]
struct MaybeCopy<T>(T);

impl Copy for MaybeCopy<u8> {}

fn main() {
    [MaybeCopy::default(); 13];
}

Clippy will try to make this

fn main() {
    MaybeCopy::default();
}

for some reason, maybe we could just remove the entire array though? 🤔

I saw this happen:

This likely indicates a bug in either rustc or cargo itself,
and we would appreciate a bug report! You're likely to see
a number of compiler warnings after this message which cargo
attempted to fix but failed. If you could open an issue at
https://github.com/rust-lang/rust/issues
quoting the full output of this command we'd be very appreciative!
Note that you may be able to make some more progress in the near-term
fixing code with the `--broken-code` flag

The following errors were reported:
error[E0282]: type annotations needed
 --> src/main.rs:7:5
  |
7 |     MaybeCopy::default();
  |     ^^^^^^^^^ cannot infer type for type parameter `T` declared on the struct `MaybeCopy`

error: aborting due to previous error

For more information about this error, try `rustc --explain E0282`.
Original diagnostics will follow.

warning: unnecessary operation
 --> src/main.rs:7:5
  |
7 |     [MaybeCopy::default(); 13];
  |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: statement can be reduced to: `MaybeCopy::default();`
  |
  = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_operation
  = note: `#[warn(clippy::unnecessary_operation)]` on by default

Version

rustc 1.67.0-nightly (b3bc6bf31 2022-11-24)
binary: rustc
commit-hash: b3bc6bf31265ac10946a0832092dbcedf9b26805
commit-date: 2022-11-24
host: x86_64-unknown-linux-gnu
release: 1.67.0-nightly
LLVM version: 15.0.4

Additional Labels

No response

@matthiaskrgr matthiaskrgr added C-bug Category: Clippy is not doing the correct thing I-suggestion-causes-error Issue: The suggestions provided by this Lint cause an ICE/error when applied I-false-positive Issue: The lint was triggered on code it shouldn't have labels Nov 25, 2022
@Jarcho
Copy link
Contributor

Jarcho commented Nov 29, 2022

MaybeCopy::default() could have side-effects, so it still needs to be called.

Also, wow. The compiler is really trigger happy on type deduction there.

@AloeareV
Copy link

Recently hit this on stable.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C-bug Category: Clippy is not doing the correct thing I-false-positive Issue: The lint was triggered on code it shouldn't have I-suggestion-causes-error Issue: The suggestions provided by this Lint cause an ICE/error when applied
Projects
None yet
Development

No branches or pull requests

3 participants