mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 15:32:06 +00:00
21 lines
519 B
Plaintext
21 lines
519 B
Plaintext
error: unnecessary allocation, use `&` instead
|
|
--> $DIR/unused-allocation.rs:5:9
|
|
|
|
|
LL | _ = (#[rustc_box] Box::new([1])).len();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
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
|
|
|