mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 16:54:01 +00:00
8 lines
265 B
Rust
8 lines
265 B
Rust
#![feature(rustc_attrs, stmt_expr_attributes)]
|
|
#![deny(unused_allocation)]
|
|
|
|
fn main() {
|
|
_ = (#[rustc_box] Box::new([1])).len(); //~ error: unnecessary allocation, use `&` instead
|
|
_ = Box::new([1]).len(); //~ error: unnecessary allocation, use `&` instead
|
|
}
|