rust-clippy/tests/ui/escape_analysis.stderr

29 lines
808 B
Text
Raw Normal View History

2019-10-06 12:49:26 +00:00
error: local variable doesn't need to be boxed here
--> $DIR/escape_analysis.rs:40:13
2019-10-06 12:49:26 +00: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 12:49:26 +00:00
|
LL | pub fn new(_needs_name: Box<PeekableSeekable<&()>>) -> () {}
| ^^^^^^^^^^^
error: local variable doesn't need to be boxed here
--> $DIR/escape_analysis.rs:195:44
|
LL | fn default_impl_x(self: Box<Self>, x: Box<u32>) -> u32 {
| ^
error: local variable doesn't need to be boxed here
--> $DIR/escape_analysis.rs:202:16
|
LL | fn foo(x: Box<u32>) {}
| ^
error: aborting due to 4 previous errors
2019-10-06 12:49:26 +00:00