2019-10-06 12:49:26 +00:00
|
|
|
error: local variable doesn't need to be boxed here
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/boxed_local.rs:40:13
|
2019-10-06 12:49:26 +00:00
|
|
|
|
|
|
|
|
LL | fn warn_arg(x: Box<A>) {
|
|
|
|
| ^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::boxed-local` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::boxed_local)]`
|
2019-10-06 12:49:26 +00:00
|
|
|
|
|
|
|
error: local variable doesn't need to be boxed here
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/boxed_local.rs:123:12
|
2019-10-06 12:49:26 +00:00
|
|
|
|
|
|
|
|
LL | pub fn new(_needs_name: Box<PeekableSeekable<&()>>) -> () {}
|
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
2021-01-15 09:56:44 +00:00
|
|
|
error: local variable doesn't need to be boxed here
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/boxed_local.rs:188:44
|
2021-01-15 09:56:44 +00:00
|
|
|
|
|
|
|
|
LL | fn default_impl_x(self: Box<Self>, x: Box<u32>) -> u32 {
|
|
|
|
| ^
|
|
|
|
|
|
|
|
error: local variable doesn't need to be boxed here
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/boxed_local.rs:196:16
|
2021-01-15 09:56:44 +00:00
|
|
|
|
|
|
|
|
LL | fn foo(x: Box<u32>) {}
|
|
|
|
| ^
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
2019-10-06 12:49:26 +00:00
|
|
|
|