2022-11-13 14:05:04 +00:00
|
|
|
error: unnecessary allocation, use `&` instead
|
2025-01-02 21:22:42 +01:00
|
|
|
--> $DIR/unused-allocation.rs:4:9
|
2022-11-13 14:05:04 +00:00
|
|
|
|
|
2025-01-02 21:22:42 +01:00
|
|
|
LL | _ = Box::new([1]).len();
|
|
|
|
|
| ^^^^^^^^^^^^^
|
2022-11-13 14:05:04 +00:00
|
|
|
|
|
|
|
|
|
note: the lint level is defined here
|
2025-01-02 21:22:42 +01:00
|
|
|
--> $DIR/unused-allocation.rs:1:9
|
2022-11-13 14:05:04 +00:00
|
|
|
|
|
|
|
|
|
LL | #![deny(unused_allocation)]
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2025-01-02 21:22:42 +01:00
|
|
|
error: aborting due to 1 previous error
|
2022-11-13 14:05:04 +00:00
|
|
|
|