-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
proc permits upvars to be moved repeatedly in a loop #12041
Comments
This is a bug in the treatment of captured variables. The line in question is: loop {
let mut acceptor = acceptor;
} This is moving into the loop repeatedly when you should only be allowed to do it once. I think I've seen this bug before, but just in case, cc @nikomatsakis |
thanks @alexcrichton, I've seen some reports of bugs like this before -- it's clear that we need to revisit the code used to check "once fns" -- it was added as a temporary start towards support (under a -Z flag) and then pressed into full service, clearly not quite ready for prime time. |
Nominating. |
updated title to reflect the real issue at hand. |
cc @flaper87 |
Assigning 1.0, max(P-backcompat-lang, P-high). Gotta fix. edit: The use of |
…no-std, r=jonas-schievink feat: prefer core/alloc over std in auto-imports if `#[no_std]` is conditional We already did this if `#![no_std]` was present, this PR makes it work with `#![cfg_attr(not(test), no_std)]` too, which is very common in libraries. Fixes rust-lang/rust-analyzer#12035 cc rust-lang/rust-analyzer#10718
… r=Jarcho Remove mitigations for incorrect node args This change https://github.com/rust-lang/rust/pull/118420/files#r1419874371 adds a missing `write_args` to properly record node args for lang-item calls. Thus, in the `unnecessary_to_owned` lint, this ensures that the `call_generic_args` extracted by `get_callee_generic_args_and_args` are always correct, and we can remove the mitigation for rust-lang#9504 and rust-lang#10021 since the root cause has been fixed. I'm not sure if there is other now-unnecessary code that can be removed, but this is the one I found when investigating rust-lang/rust-clippy#11965 (comment). changelog: none
compiles
rustc chat.rs
. Runs./chat
.telnet localhost 3000
Connection refused and segfault.The text was updated successfully, but these errors were encountered: