2022-11-13 08:05:04 -06:00
|
|
|
error: unnecessary allocation, use `&` instead
|
|
|
|
--> $DIR/unused-allocation.rs:5:9
|
|
|
|
|
|
2023-03-03 13:02:35 -06:00
|
|
|
LL | _ = (#[rustc_box] Box::new([1])).len();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-11-13 08:05:04 -06:00
|
|
|
|
|
|
|
|
note: the lint level is defined here
|
|
|
|
--> $DIR/unused-allocation.rs:2:9
|
|
|
|
|
|
|
|
|
LL | #![deny(unused_allocation)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: unnecessary allocation, use `&` instead
|
|
|
|
--> $DIR/unused-allocation.rs:6:9
|
|
|
|
|
|
|
|
|
LL | _ = Box::new([1]).len();
|
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|