-
Notifications
You must be signed in to change notification settings - Fork 30
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
Miri gives an error when resolving strings #15
Comments
That's interesting. Thank you for the info. |
Interesting, miri does not give any error for the |
Yeah I don't think miri likes that very much: rust-lang/unsafe-code-guidelines#148 |
That's also interesting because the |
BTW you can test with miri locally like this: $ rustup component add --toolchain nightly miri
$ cargo +nightly miri run |
Any progress on fixing this? |
Oops, I missed #17. I can confirm that PR fixes the miri evaluation error :) |
This should have been resolved with v0.8. :) |
Given the following simple use of string_interner, miri gives the error
trying to reborrow for SharedReadOnly, but parent tag <2253> does not have an appropriate item in the borrow stack
.I am not quite sure what this error means, but I am concerned about possible UB in string_interner. Here is a link to a similar issue in
owning-ref
: rust-lang/unsafe-code-guidelines#194Full miri backtrace
The text was updated successfully, but these errors were encountered: