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)
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/trivially_copy_pass_by_ref.rs:52: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
|
2022-10-06 07:44:38 +00:00
|
|
|
--> $DIR/trivially_copy_pass_by_ref.rs:3:9
|
2020-04-03 01:46:01 +00:00
|
|
|
|
|
|
|
|
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)
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/trivially_copy_pass_by_ref.rs:52: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)
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/trivially_copy_pass_by_ref.rs:52: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)
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/trivially_copy_pass_by_ref.rs:59: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)
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/trivially_copy_pass_by_ref.rs:59: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)
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/trivially_copy_pass_by_ref.rs:59: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)
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/trivially_copy_pass_by_ref.rs:59: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)
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/trivially_copy_pass_by_ref.rs:61: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)
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/trivially_copy_pass_by_ref.rs:61: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)
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/trivially_copy_pass_by_ref.rs:61: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)
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/trivially_copy_pass_by_ref.rs:63:35
|
2021-08-12 09:16:25 +00:00
|
|
|
|
|
|
|
|
LL | fn bad_issue7518(self, other: &Self) {}
|
|
|
|
| ^^^^^ help: consider passing by value instead: `Self`
|
|
|
|
|
|
|
|
error: this argument (N byte) is passed by reference, but would be more efficient if passed by value (limit: N byte)
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/trivially_copy_pass_by_ref.rs:75: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)
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/trivially_copy_pass_by_ref.rs:75: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)
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/trivially_copy_pass_by_ref.rs:75: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)
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/trivially_copy_pass_by_ref.rs:79: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`
|
|
|
|
|
2020-08-28 14:10:16 +00:00
|
|
|
error: this argument (N byte) is passed by reference, but would be more efficient if passed by value (limit: N byte)
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/trivially_copy_pass_by_ref.rs:111:21
|
2020-08-28 14:10:16 +00:00
|
|
|
|
|
|
|
|
LL | fn foo_never(x: &i32) {
|
|
|
|
| ^^^^ help: consider passing by value instead: `i32`
|
|
|
|
|
|
|
|
error: this argument (N byte) is passed by reference, but would be more efficient if passed by value (limit: N byte)
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/trivially_copy_pass_by_ref.rs:116:15
|
2020-08-28 14:10:16 +00:00
|
|
|
|
|
|
|
|
LL | fn foo(x: &i32) {
|
|
|
|
| ^^^^ help: consider passing by value instead: `i32`
|
|
|
|
|
2022-06-30 08:50:09 +00:00
|
|
|
error: this argument (N byte) is passed by reference, but would be more efficient if passed by value (limit: N byte)
|
2023-07-17 08:19:29 +00:00
|
|
|
--> $DIR/trivially_copy_pass_by_ref.rs:143:37
|
2022-06-30 08:50:09 +00:00
|
|
|
|
|
|
|
|
LL | fn _unrelated_lifetimes<'a, 'b>(_x: &'a u32, y: &'b u32) -> &'b u32 {
|
|
|
|
| ^^^^^^^ help: consider passing by value instead: `u32`
|
|
|
|
|
|
|
|
error: aborting due to 18 previous errors
|
2018-05-27 12:32:03 +00:00
|
|
|
|