summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/boxed_local.stderr
blob: 9036529f39c519c6043320c7982366f36614ffe1 (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:41: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:132:12
   |
LL | pub fn new(_needs_name: Box<PeekableSeekable<&()>>) -> () {}
   |            ^^^^^^^^^^^

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

error: aborting due to 4 previous errors