summaryrefslogtreecommitdiffstats
path: root/tests/ui/unpretty/box.rs
blob: 81f5c88d7902f44d090efe9063a5e332e151ea3b (plain)
1
2
3
4
5
6
7
8
9
// compile-flags: -Zunpretty=hir
// check-pass

#![feature(stmt_expr_attributes, rustc_attrs)]

fn main() {
    let _ = #[rustc_box]
    Box::new(1);
}