mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
15 lines
263 B
Plaintext
15 lines
263 B
Plaintext
// compile-flags: -Zunpretty=hir
|
|
// check-pass
|
|
|
|
#![feature(stmt_expr_attributes, rustc_attrs)]
|
|
#[prelude_import]
|
|
use ::std::prelude::rust_2015::*;
|
|
#[macro_use]
|
|
extern crate std;
|
|
|
|
fn main() {
|
|
let _ =
|
|
#[rustc_box]
|
|
Box::new(1);
|
|
}
|