We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The type inference of FromIterator seems to fail, even though the type of range is correctly deduced.
use std::iter::FromIterator; fn main() { let v = Vec::from_iter(0..10); println!("v: {:?}", v); }
Explicitly stating the type of the range seems to fix the issue.
use std::iter::FromIterator; fn main() { let v = Vec::from_iter(0i32..10); println!("v: {:?}", v); }
The text was updated successfully, but these errors were encountered:
Duplicate of #4072, I think.
Sorry, something went wrong.
No branches or pull requests
The type inference of FromIterator seems to fail, even though the type of range is correctly deduced.
Explicitly stating the type of the range seems to fix the issue.
The text was updated successfully, but these errors were encountered: