]> git.lizzy.rs Git - rust.git/blob - tests/ui/box/alloc-unstable.rs
Rollup merge of #106638 - RalfJung:realstd, r=thomcc
[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 }