-
Notifications
You must be signed in to change notification settings - Fork 244
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
(c2rust-analyze
) Support rewrites with implicit &raw
s
#909
Comments
@spernsteiner, do you think #934 might fix this? I don't want to work on this too much if it's going to be overwritten by #934. |
I'm not sure. I tried merging together
|
Fixed by the refactor in #934. |
Code with implicitly inserted
&raw
s, such ascrashes in the rewriter due to not handling the implicitly inserted
&raw
in the MIR:When the
&raw
is made explicit with anaddr_of!
, such asthings work again.
Note: These examples are taken from
string_casts.rs
from #839.The text was updated successfully, but these errors were encountered: