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
Both of these loops don't typecheck, although it should be deducable what the type of u is:
u
iter x() -> int { put 1; put 2; } fn main() { for each u in x() { log_err u == 1; } for u in ~[1, 2, 3] { log_err u == 2; } }
The text was updated successfully, but these errors were encountered:
(Interestingly, the code looks like it is doing the right thing in this case.)
Sorry, something went wrong.
2d5b651
Auto merge of rust-lang#790 - semarie:bsd-utimens, r=alexcrichton
9742273
add utimensat to NetBSD and OpenBSD
Merge pull request rust-lang#790 from mappum/patch-1
dbd58a1
Added missing comma to Unions reference
Encourage devirtualization (rust-lang#790)
609abf3
No branches or pull requests
Both of these loops don't typecheck, although it should be deducable what the type of
u
is:The text was updated successfully, but these errors were encountered: