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)
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui-toml/toml_trivially_copy/test.rs:15:11
|
2018-05-27 14:04:45 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn bad(x: &u16, y: &Foo) {}
|
2018-05-27 14:04:45 +00:00
|
|
|
| ^^^^ help: consider passing by value instead: `u16`
|
|
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
= note: `-D clippy::trivially-copy-pass-by-ref` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::trivially_copy_pass_by_ref)]`
|
2018-05-27 14:04:45 +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)
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui-toml/toml_trivially_copy/test.rs:15:20
|
2018-05-27 14:04:45 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn bad(x: &u16, y: &Foo) {}
|
2018-05-27 14:04:45 +00:00
|
|
|
| ^^^^ help: consider passing by value instead: `Foo`
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|