You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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
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
This is working as intended now but needs a test case.
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
Example code:
In this case, the type of the integers for the
range
is unambiguouslyuint
, although the compiler still throws an error and won't accept the code unless you add au
suffix to either the0
or the3
in therange
. 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.The text was updated successfully, but these errors were encountered: