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

Confusing compiler error when iterating over Option<IntoIterator> #57872

Open
KeyboardDanni opened this issue Jan 24, 2019 · 2 comments
Open
Labels
A-diagnostics Area: Messages for errors, warnings, and lints C-enhancement Category: An issue proposing an enhancement or a PR with one. D-papercut Diagnostics: An error or lint that needs small tweaks. P-low Low priority T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.

Comments

@KeyboardDanni
Copy link

KeyboardDanni commented Jan 24, 2019

I recently wrote a type that implemented IntoIterator with a tuple as the Item type. I then tried to test this by using this iterator in a for loop. I got the following error:

     for (i, j) in foo
         ^^^^^^ expected struct `MyIter`, found tuple

This left me confused, because I had assumed that foo's type was MyIter. Why was the iterator returning itself, instead of the item type I had specified? I began to suspect my implementation of IntoIterator before I realized that foo was actually Option<MyIter>. As it turns out, Option also implements IntoIterator (#27996), so the compiler thought I was trying to iterate over the Option instead of the enclosed type!

It'd be nice if there were a note associated with the compiler error in cases where the iterator is type Option<T : IntoIterator>. Something like this, maybe?

"Note: `iter` is `Option<MyIter>`. Did you forget to unwrap?"

Simple reproduction of the compiler error:

https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=4432a78517e24ea649a31c7246b34edd

@estebank estebank added the A-diagnostics Area: Messages for errors, warnings, and lints label Jan 24, 2019
@estebank estebank added the P-low Low priority label May 31, 2019
@RustyYato
Copy link
Contributor

@cosmicchipsocket you can use foo.into_iter().flatten() instead of foo.unwrap(). This way you get an iterator that yields nothing when the Option is None, and iterates over the internal iterator when the Option is Some.

@estebank estebank added D-papercut Diagnostics: An error or lint that needs small tweaks. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. labels Oct 9, 2019
@crlf0710 crlf0710 added the C-enhancement Category: An issue proposing an enhancement or a PR with one. label Jun 11, 2020
@estebank
Copy link
Contributor

estebank commented Aug 3, 2023

Current output:

error[E0308]: mismatched types
  --> src/main.rs:10:9
   |
10 |     for (i, j) in foo_wrapped
   |         ^^^^^^    ----------- this is an iterator with items of type `std::slice::Iter<'_, ({integer}, {integer})>`
   |         |
   |         expected `Iter<'_, ({integer}, {integer})>`, found `(_, _)`
   |
   = note: expected struct `std::slice::Iter<'_, ({integer}, {integer})>`
               found tuple `(_, _)`

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 C-enhancement Category: An issue proposing an enhancement or a PR with one. D-papercut Diagnostics: An error or lint that needs small tweaks. P-low Low priority T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.
Projects
None yet
Development

No branches or pull requests

4 participants