summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/boxed_local.stderr
blob: 187cc8fa18bac5f02ba9d9f1105c72e183f61a20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
error: local variable doesn't need to be boxed here
  --> $DIR/boxed_local.rs:40:13
   |
LL | fn warn_arg(x: Box<A>) {
   |             ^
   |
   = note: `-D clippy::boxed-local` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::boxed_local)]`

error: local variable doesn't need to be boxed here
  --> $DIR/boxed_local.rs:123:12
   |
LL | pub fn new(_needs_name: Box<PeekableSeekable<&()>>) -> () {}
   |            ^^^^^^^^^^^

error: local variable doesn't need to be boxed here
  --> $DIR/boxed_local.rs:188:44
   |
LL |         fn default_impl_x(self: Box<Self>, x: Box<u32>) -> u32 {
   |                                            ^

error: local variable doesn't need to be boxed here
  --> $DIR/boxed_local.rs:196:16
   |
LL |         fn foo(x: Box<u32>) {}
   |                ^

error: aborting due to 4 previous errors