blob: c86a769a3da4b170e2dbbc93118ed5a49dd0b216 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
error: local variable doesn't need to be boxed here
--> $DIR/escape_analysis.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/escape_analysis.rs:131:12
|
LL | pub fn new(_needs_name: Box<PeekableSeekable<&()>>) -> () {}
| ^^^^^^^^^^^
error: aborting due to 2 previous errors
|