2019-05-06 19:41:05 +00:00
|
|
|
error: this argument (N byte) is passed by reference, but would be more efficient if passed by value (limit: N byte)
|
2020-04-03 01:46:01 +00:00
|
|
|
--> $DIR/trivially_copy_pass_by_ref.rs:51:11
|
2018-05-27 12:32:03 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn bad(x: &u32, y: &Foo, z: &Baz) {}
|
2018-05-27 12:32:03 +00:00
|
|
|
| ^^^^ help: consider passing by value instead: `u32`
|
|
|
|
|
|
2020-04-03 01:46:01 +00:00
|
|
|
note: the lint level is defined here
|
|
|
|
--> $DIR/trivially_copy_pass_by_ref.rs:4:9
|
|
|
|
|
|
|
|
|
LL | #![deny(clippy::trivially_copy_pass_by_ref)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-05-27 12:32:03 +00:00
|
|
|
|
2019-05-06 19:41:05 +00:00
|
|
|
error: this argument (N byte) is passed by reference, but would be more efficient if passed by value (limit: N byte)
|
2020-04-03 01:46:01 +00:00
|
|
|
--> $DIR/trivially_copy_pass_by_ref.rs:51:20
|
2018-05-27 12:32:03 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn bad(x: &u32, y: &Foo, z: &Baz) {}
|
2018-05-27 12:32:03 +00:00
|
|
|
| ^^^^ help: consider passing by value instead: `Foo`
|
|
|
|
|
2019-05-06 19:41:05 +00:00
|
|
|
error: this argument (N byte) is passed by reference, but would be more efficient if passed by value (limit: N byte)
|
2020-04-03 01:46:01 +00:00
|
|
|
--> $DIR/trivially_copy_pass_by_ref.rs:51:29
|
2018-05-27 12:32:03 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn bad(x: &u32, y: &Foo, z: &Baz) {}
|
2018-05-27 12:32:03 +00:00
|
|
|
| ^^^^ help: consider passing by value instead: `Baz`
|
|
|
|
|
2019-05-06 19:41:05 +00:00
|
|
|
error: this argument (N byte) is passed by reference, but would be more efficient if passed by value (limit: N byte)
|
2020-04-03 01:46:01 +00:00
|
|
|
--> $DIR/trivially_copy_pass_by_ref.rs:58:12
|
2018-05-27 12:32:03 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn bad(&self, x: &u32, y: &Foo, z: &Baz) {}
|
2018-05-27 12:32:03 +00:00
|
|
|
| ^^^^^ help: consider passing by value instead: `self`
|
|
|
|
|
2019-05-06 19:41:05 +00:00
|
|
|
error: this argument (N byte) is passed by reference, but would be more efficient if passed by value (limit: N byte)
|
2020-04-03 01:46:01 +00:00
|
|
|
--> $DIR/trivially_copy_pass_by_ref.rs:58:22
|
2018-05-27 12:32:03 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn bad(&self, x: &u32, y: &Foo, z: &Baz) {}
|
2018-05-27 12:32:03 +00:00
|
|
|
| ^^^^ help: consider passing by value instead: `u32`
|
|
|
|
|
2019-05-06 19:41:05 +00:00
|
|
|
error: this argument (N byte) is passed by reference, but would be more efficient if passed by value (limit: N byte)
|
2020-04-03 01:46:01 +00:00
|
|
|
--> $DIR/trivially_copy_pass_by_ref.rs:58:31
|
2018-05-27 12:32:03 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn bad(&self, x: &u32, y: &Foo, z: &Baz) {}
|
2018-05-27 12:32:03 +00:00
|
|
|
| ^^^^ help: consider passing by value instead: `Foo`
|
|
|
|
|
2019-05-06 19:41:05 +00:00
|
|
|
error: this argument (N byte) is passed by reference, but would be more efficient if passed by value (limit: N byte)
|
2020-04-03 01:46:01 +00:00
|
|
|
--> $DIR/trivially_copy_pass_by_ref.rs:58:40
|
2018-05-27 12:32:03 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn bad(&self, x: &u32, y: &Foo, z: &Baz) {}
|
2018-05-27 12:32:03 +00:00
|
|
|
| ^^^^ help: consider passing by value instead: `Baz`
|
|
|
|
|
2019-05-06 19:41:05 +00:00
|
|
|
error: this argument (N byte) is passed by reference, but would be more efficient if passed by value (limit: N byte)
|
2020-04-03 01:46:01 +00:00
|
|
|
--> $DIR/trivially_copy_pass_by_ref.rs:60:16
|
2018-05-27 12:32:03 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn bad2(x: &u32, y: &Foo, z: &Baz) {}
|
2018-05-27 12:32:03 +00:00
|
|
|
| ^^^^ help: consider passing by value instead: `u32`
|
|
|
|
|
2019-05-06 19:41:05 +00:00
|
|
|
error: this argument (N byte) is passed by reference, but would be more efficient if passed by value (limit: N byte)
|
2020-04-03 01:46:01 +00:00
|
|
|
--> $DIR/trivially_copy_pass_by_ref.rs:60:25
|
2018-05-27 12:32:03 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn bad2(x: &u32, y: &Foo, z: &Baz) {}
|
2018-05-27 12:32:03 +00:00
|
|
|
| ^^^^ help: consider passing by value instead: `Foo`
|
|
|
|
|
2019-05-06 19:41:05 +00:00
|
|
|
error: this argument (N byte) is passed by reference, but would be more efficient if passed by value (limit: N byte)
|
2020-04-03 01:46:01 +00:00
|
|
|
--> $DIR/trivially_copy_pass_by_ref.rs:60:34
|
2018-05-27 12:32:03 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn bad2(x: &u32, y: &Foo, z: &Baz) {}
|
2018-05-27 12:32:03 +00:00
|
|
|
| ^^^^ help: consider passing by value instead: `Baz`
|
|
|
|
|
2019-05-06 19:41:05 +00:00
|
|
|
error: this argument (N byte) is passed by reference, but would be more efficient if passed by value (limit: N byte)
|
2020-04-03 01:46:01 +00:00
|
|
|
--> $DIR/trivially_copy_pass_by_ref.rs:72:16
|
2018-05-27 12:32:03 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn bad2(x: &u32, y: &Foo, z: &Baz) {}
|
2018-05-27 12:32:03 +00:00
|
|
|
| ^^^^ help: consider passing by value instead: `u32`
|
|
|
|
|
2019-05-06 19:41:05 +00:00
|
|
|
error: this argument (N byte) is passed by reference, but would be more efficient if passed by value (limit: N byte)
|
2020-04-03 01:46:01 +00:00
|
|
|
--> $DIR/trivially_copy_pass_by_ref.rs:72:25
|
2018-05-27 12:32:03 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn bad2(x: &u32, y: &Foo, z: &Baz) {}
|
2018-05-27 12:32:03 +00:00
|
|
|
| ^^^^ help: consider passing by value instead: `Foo`
|
|
|
|
|
2019-05-06 19:41:05 +00:00
|
|
|
error: this argument (N byte) is passed by reference, but would be more efficient if passed by value (limit: N byte)
|
2020-04-03 01:46:01 +00:00
|
|
|
--> $DIR/trivially_copy_pass_by_ref.rs:72:34
|
2018-05-27 12:32:03 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn bad2(x: &u32, y: &Foo, z: &Baz) {}
|
2018-05-27 12:32:03 +00:00
|
|
|
| ^^^^ help: consider passing by value instead: `Baz`
|
|
|
|
|
2019-05-06 19:41:05 +00:00
|
|
|
error: this argument (N byte) is passed by reference, but would be more efficient if passed by value (limit: N byte)
|
2020-04-03 01:46:01 +00:00
|
|
|
--> $DIR/trivially_copy_pass_by_ref.rs:76:34
|
2018-11-21 01:59:02 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn trait_method(&self, _foo: &Foo);
|
2018-11-21 01:59:02 +00:00
|
|
|
| ^^^^ help: consider passing by value instead: `Foo`
|
|
|
|
|
2019-05-06 19:41:05 +00:00
|
|
|
error: this argument (N byte) is passed by reference, but would be more efficient if passed by value (limit: N byte)
|
2020-04-03 01:46:01 +00:00
|
|
|
--> $DIR/trivially_copy_pass_by_ref.rs:80:37
|
2018-11-21 01:59:02 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn trait_method2(&self, _color: &Color);
|
2018-11-21 01:59:02 +00:00
|
|
|
| ^^^^^^ help: consider passing by value instead: `Color`
|
|
|
|
|
|
|
|
error: aborting due to 15 previous errors
|
2018-05-27 12:32:03 +00:00
|
|
|
|