mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-21 11:30:15 +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
|
|
}
|