2019-05-06 14:41:05 -05:00
|
|
|
error: this argument (N byte) is passed by reference, but would be more efficient if passed by value (limit: N byte)
|
2020-04-02 20:46:01 -05:00
|
|
|
--> $DIR/test.rs:15:11
|
2018-05-27 09:04:45 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | fn bad(x: &u16, y: &Foo) {}
|
2018-05-27 09:04:45 -05:00
|
|
|
| ^^^^ help: consider passing by value instead: `u16`
|
|
|
|
|
|
2020-04-02 20:46:01 -05:00
|
|
|
note: the lint level is defined here
|
|
|
|
--> $DIR/test.rs:4:9
|
|
|
|
|
|
|
|
|
LL | #![deny(clippy::trivially_copy_pass_by_ref)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-05-27 09:04:45 -05:00
|
|
|
|
2019-05-06 14:41:05 -05:00
|
|
|
error: this argument (N byte) is passed by reference, but would be more efficient if passed by value (limit: N byte)
|
2020-04-02 20:46:01 -05:00
|
|
|
--> $DIR/test.rs:15:20
|
2018-05-27 09:04:45 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | fn bad(x: &u16, y: &Foo) {}
|
2018-05-27 09:04:45 -05:00
|
|
|
| ^^^^ help: consider passing by value instead: `Foo`
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|