-
Notifications
You must be signed in to change notification settings - Fork 360
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
tests for Box with non-ZST allocator #2072
Conversation
e2cfa37
to
21e34fa
Compare
I tried this with rust-lang/rust#95576 and it looks like it fixes dereferencing. Of course, unsizing is still broken. |
Ah, good point. I wonder what the codegen backends do for unsizing. |
Now that rust-lang/rust#95576 has been merged, it's just the unsizing that's left. |
Miri's type validation also still bails on these non-primitive Stacked Borrows retagging will probably have similar issues. |
I am closing this for now since I think we need a larger redesign of |
…ial, r=RalfJung Fix box with custom allocator in miri This should fix the failures in rust-lang/miri#2072 and rust-lang#98510. cc `@RalfJung`
…ial, r=RalfJung Fix box with custom allocator in miri This should fix the failures in rust-lang/miri#2072 and rust-lang#98510. cc ``@RalfJung``
…ial, r=RalfJung Fix box with custom allocator in miri This should fix the failures in rust-lang/miri#2072 and rust-lang#98510. cc ```@RalfJung```
Needs something like rust-lang/rust#96198 (+more for the unsizing stuff), or hopefully rust-lang/rust#95576 suffices as well.