summary refs log tree commit diff
path: root/tests/ui/box/alloc-unstable.rs
blob: 640cadcc8e3dc15ad45483762988babd2e44f4ce (plain)
1
2
3
4
5
// run-pass
#![feature(allocator_api)]
fn main() {
    let _boxed: Box<u32, _> = Box::new(10);
}