rust/tests/ui/unpretty/box.rs
2023-03-12 13:19:46 +00:00

10 lines
152 B
Rust

// compile-flags: -Zunpretty=hir
// check-pass
#![feature(stmt_expr_attributes, rustc_attrs)]
fn main() {
let _ = #[rustc_box]
Box::new(1);
}