2018-05-27 14:04:45 +00:00
|
|
|
error: this argument is passed by reference, but would be more efficient if passed by value
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/test.rs:23:11
|
2018-05-27 14:04:45 +00:00
|
|
|
|
|
2018-10-06 16:18:06 +00:00
|
|
|
23 | fn bad(x: &u16, y: &Foo) {
|
2018-05-27 14:04:45 +00:00
|
|
|
| ^^^^ help: consider passing by value instead: `u16`
|
|
|
|
|
|
2018-08-01 20:38:04 +00:00
|
|
|
= note: `-D clippy::trivially-copy-pass-by-ref` implied by `-D warnings`
|
2018-05-27 14:04:45 +00:00
|
|
|
|
|
|
|
error: this argument is passed by reference, but would be more efficient if passed by value
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/test.rs:23:20
|
2018-05-27 14:04:45 +00:00
|
|
|
|
|
2018-10-06 16:18:06 +00:00
|
|
|
23 | 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
|
|
|
|
|