]> git.lizzy.rs Git - rust.git/blob - tests/ui/box/alloc-unstable.rs
Auto merge of #106646 - Amanieu:ilp32-object, r=Mark-Simulacrum
[rust.git] / tests / ui / box / alloc-unstable.rs
1 // run-pass
2 #![feature(allocator_api)]
3
4 use std::boxed::Box;
5
6 fn main() {
7     let _boxed: Box<u32, _> = Box::new(10);
8 }