]> git.lizzy.rs Git - rust.git/blob - src/test/ui/box/alloc-unstable.rs
Rollup merge of #105955 - Nilstrieb:no-trivial-opt-wrappers-we-have-field-accesses...
[rust.git] / src / test / 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 }