-
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
Unsafe behaviour without unsafe code, bug in lifetime checker / shared memory restrictions? #19552
Comments
cc @luqmana looks like it could be that by-val match optimization issue? |
cc me |
On 0.12.0 this fails to compile because |
I'm not sure. This program runs fine for me. The byte literal is typed as |
This is most likely a race condition. The output always seems correct in the playpen, and it's sometimes correct on my 1-core VM. But running it on a multicore machine always gives me jumbled up output. I tested it on the latest nightly on both Windows and Linux. |
P-backcompat-lang 1.0 |
@alexcrichton and I need to look more closely. I'm not yet sure what's going wrong. |
Minimized version: fn assert_send<T: Send>(_t: T) {}
fn main() {
let line = String::new();
match [line.as_slice()] {
[ word ] => { assert_send(word); }
}
} |
Seems to be tied to vector patterns. Should have guessed. |
Got a fix underway. Turns out to be a dup of #19997 |
One would expect the output to be
But the actual output is:
It looks like the memory location at word is overwritten.
The program will behave correctly if word is deep copied before being sent, i.e. changing tx.send(word) to tx.send(word.to_string())
The text was updated successfully, but these errors were encountered: