mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-07 17:18:32 +03:00
6dc62f421d
Fix ICE when using Box<T, A> with pointer sized A Fixes #78459 Note that using `Box<T, A>` with a more than pointer sized `A` or using a pointer sized `A` with a Box of a DST will produce a different ICE (#92054) which is not fixed by this PR.