DEBSOURCES
Skip Quicknav
sources / rustc-web / 1.70.0%2Bdfsg1-7~deb12u2 / tests / ui / box / alloc-unstable.rs
12345678
// run-pass #![feature(allocator_api)] use std::boxed::Box; fn main() { let _boxed: Box<u32, _> = Box::new(10); }