-
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
Segfault matching copy of dereferenced owned string #4542
Comments
This simpler example pokes the same bug:
|
This also segfaults, and prints what appears to be garbage:
I think borrowck should reject this, since the copy of |
@catamorphism What is noncopyable about ~1? I think this is basically valid. |
@nikomatsakis You're right; I'm coming up with another example. |
@catamorphism ok. btw, I am working on the move code right now, which is close to this area. it's possible I could look into this bug afterward, I expect the problem is centered around how |
@nikomatsakis I reassigned this and #4541 to you (that one looks pretty similar to this) -- if you end up not wanting to look into it, feel free to assign back to me once you're done with the move code :-) |
Reproduced with 373504a. Seems at least mildly important. |
Not critical for 0.6; removing milestone. |
…=camsteffen Add `explicit_write` suggestions for `write!`s with format args changelog: Add [`explicit_write`] suggestions for `write!`s with format args Fixes rust-lang#4542 ```rust writeln!(std::io::stderr(), "macro arg {}", one!()).unwrap(); ``` Now suggests: ``` error: use of `writeln!(stderr(), ...).unwrap()` --> $DIR/explicit_write.rs:36:9 | LL | writeln!(std::io::stderr(), "macro arg {}", one!()).unwrap(); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `eprintln!("macro arg {}", one!())` ``` --------- r? `@camsteffen` (again, sorry 😛) for the `FormatArgsExpn` change Before this change `inputs_span` returned a span pointing to just `1` in ```rust macro_rules! one { () => { 1 }; } `writeln!(std::io::stderr(), "macro arg {}", one!()).unwrap();` ``` And the `source_callsite` of that span didn't include the format string, it was just `one!()`
The text was updated successfully, but these errors were encountered: