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

False positive while_let_on_iterator #2926

Closed
dwijnand opened this issue Jul 17, 2018 · 2 comments
Closed

False positive while_let_on_iterator #2926

dwijnand opened this issue Jul 17, 2018 · 2 comments
Labels
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 L-suggestion Lint: Improving, adding or fixing lint suggestions

Comments

@dwijnand
Copy link
Member

Given

let args: Vec<String> = std::env::args().collect();
let mut args = args.iter().skip(1); // skip the path of the executable
while let Some(_arg) = args.next() {
    let blank = &String::new();
    let _next = || { args.next().unwrap_or(blank) };
}

Clippy warns:

warning: this loop could be written as a `for` loop                      ] 0/1: t
 --> src/lib.rs:4:28
  |
4 |     while let Some(_arg) = args.next() {
  |                            ^^^^^^^^^^^ help: try: `for _arg in args { .. }`
  |
  = note: #[warn(while_let_on_iterator)] on by default
  = help: for further information visit https://rust-lang-nursery.github.io/rust-clippy/v0.0.212/index.html#while_let_on_iterator

However that results in:

error[E0382]: capture of moved value: `args`                             ] 0/1: t
 --> src/lib.rs:6:21
  |
4 |     for _arg in args {
  |                 ---- value moved here
5 |         let blank = &String::new();
6 |         let _next = || { args.next().unwrap_or(blank) };
  |                     ^^ value captured here after move
  |
  = note: move occurs because `args` has type `std::iter::Skip<std::slice::Iter<'_, std::string::String>>`, which does not implement the `Copy` trait
@phansch phansch added C-bug Category: Clippy is not doing the correct thing L-suggestion Lint: Improving, adding or fixing lint suggestions labels Jul 17, 2018
@phansch phansch added the I-suggestion-causes-error Issue: The suggestions provided by this Lint cause an ICE/error when applied label Jan 4, 2019
@ghost
Copy link

ghost commented Feb 5, 2019

It looks like the lint does trigger any more. playground
It was probably fixed by #3672. Can we close this?

@phansch
Copy link
Member

phansch commented Feb 5, 2019

Looks like the same issue, yes 👍

@phansch phansch closed this as completed Feb 5, 2019
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-suggestion-causes-error Issue: The suggestions provided by this Lint cause an ICE/error when applied L-suggestion Lint: Improving, adding or fixing lint suggestions
Projects
None yet
Development

No branches or pull requests

2 participants