Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
box
/
alloc-unstable.rs
blob: b8c8bc0c70af4912d3c1e4cc9e728df639418ebf [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
#![
feature
(
allocator_api
)]
fn
main
()
{
let
_boxed
:
Box
<
u32
,
_
>
=
Box
::
new
(
10
);
}