rust/tests/ui/escape_analysis.stderr

17 lines
440 B
Text
Raw Normal View History

2019-10-06 14:49:26 +02:00
error: local variable doesn't need to be boxed here
--> $DIR/escape_analysis.rs:40:13
2019-10-06 14:49:26 +02:00
|
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
2019-10-06 14:49:26 +02:00
|
LL | pub fn new(_needs_name: Box<PeekableSeekable<&()>>) -> () {}
| ^^^^^^^^^^^
error: aborting due to 2 previous errors