widen special case on deref to all non-zst allocators

This commit is contained in:
DrMeepster 2022-03-25 23:14:30 -07:00
parent d4acac935b
commit 46dadfc142
2 changed files with 12 additions and 4 deletions

View file

@ -0,0 +1,10 @@
// compile-flags: -O
// compile-pass
#![feature(allocator_api, bench_black_box)]
pub fn main() {
let mut node = Box::new_in([5u8], &std::alloc::Global);
node[0] = 7u8;
std::hint::black_box(node);
}