2023-03-03 13:02:35 -06:00
|
|
|
#![feature(rustc_attrs, stmt_expr_attributes)]
|
2022-11-13 08:05:04 -06:00
|
|
|
#![deny(unused_allocation)]
|
|
|
|
|
|
|
|
fn main() {
|
2023-03-03 13:02:35 -06:00
|
|
|
_ = (#[rustc_box] Box::new([1])).len(); //~ error: unnecessary allocation, use `&` instead
|
2022-11-13 08:05:04 -06:00
|
|
|
_ = Box::new([1]).len(); //~ error: unnecessary allocation, use `&` instead
|
|
|
|
}
|