]> git.lizzy.rs Git - rust.git/blob - tests/ui/box/alloc-unstable.rs
Auto merge of #105716 - chriswailes:ndk-update-redux, r=pietroalbini
[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 }