constify TryFrom<Vec> for array#155616
Conversation
|
r? @jackh726 rustbot has assigned @jackh726. Use Why was this reviewer chosen?The reviewer was selected based on:
|
This comment has been minimized.
This comment has been minimized.
9c141c1 to
f59366f
Compare
This comment has been minimized.
This comment has been minimized.
f59366f to
8acdb36
Compare
| #[cfg(not(no_global_oom_handling))] | ||
| use core::marker::Destruct; | ||
| use core::marker::{Freeze, PhantomData}; | ||
| use core::marker::{Destruct, Freeze, PhantomData}; |
There was a problem hiding this comment.
I assume this cfg was previously here just to silence a warning, so it was fine to remove.
|
r? libs-api |
|
assigned reviewer seems inactive atm |
|
r? oli is this blocked on figuring out std constification |
|
r? oli-obk |
|
Failed to set assignee to
|
|
Huh why does this affect mir-opts? I think this is fine under std constification, because it tests a very specific use case of a core type like |
Related issues #79597, #143773, #133214
this makes
Vecconst Destructalong the way.