summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/boxed_local.stderr
blob: 10d78fbc0abb5d2f1c72e86d60c4f464756f22da (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
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`

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

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

error: aborting due to 4 previous errors