Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
unpretty
/
box.rs
blob: 8972eccf3b8fd88cdd332d0cb5f0e700973900b1 [
file
] [
log
] [
blame
] [
edit
]
//@ compile-flags: -Zunpretty=hir
//@ check-pass
#![
feature
(
stmt_expr_attributes
,
rustc_attrs
)]
fn
main
()
{
let
_
=
#[
rustc_box
]
Box
::
new
(
1
);
}