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