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

Type inference doesn't work well with Iterators (0.11.0) #15673

Closed
ghost opened this issue Jul 14, 2014 · 2 comments · Fixed by #17721
Closed

Type inference doesn't work well with Iterators (0.11.0) #15673

ghost opened this issue Jul 14, 2014 · 2 comments · Fixed by #17721
Labels
E-needs-test Call for participation: An issue has been fixed and does not reproduce, but no test has been added.

Comments

@ghost
Copy link

ghost commented Jul 14, 2014

Example code:

use std::iter::AdditiveIterator;
fn main() {
    let x: [u64, ..3] = [1, 2, 3];
    println!("{}", range(0, 3).map(|i| x[i]).sum());
}

In this case, the type of the integers for the range is unambiguously uint, although the compiler still throws an error and won't accept the code unless you add a u suffix to either the 0 or the 3 in the range. This seems to apply to all types of iterators as well, and the compiler isn't good enough to infer the type based upon a later function call in the chain.

@ghost ghost changed the title Type inference doesn't work well with Iterators Type inference doesn't work well with Iterators (0.11.0) Jul 14, 2014
@emberian emberian changed the title Type inference doesn't work well with Iterators (0.11.0) Type inference doesn't work well with Iterators Jul 14, 2014
@emberian
Copy link
Member

cc @nikomatsakis

@ghost ghost changed the title Type inference doesn't work well with Iterators Type inference doesn't work well with Iterators (0.11.0) Jul 15, 2014
@ghost
Copy link
Author

ghost commented Oct 1, 2014

This is working as intended now but needs a test case.

@alexcrichton alexcrichton added the E-needs-test Call for participation: An issue has been fixed and does not reproduce, but no test has been added. label Oct 1, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
E-needs-test Call for participation: An issue has been fixed and does not reproduce, but no test has been added.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants