rust-clippy/tests/ui-toml/toml_trivially_copy/test.stderr

17 lines
578 B
Text
Raw Normal View History

error: this argument is passed by reference, but would be more efficient if passed by value
2018-12-10 05:27:19 +00:00
--> $DIR/test.rs:20:11
|
2018-12-10 05:27:19 +00:00
20 | fn bad(x: &u16, y: &Foo) {}
| ^^^^ 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`
error: this argument is passed by reference, but would be more efficient if passed by value
2018-12-10 05:27:19 +00:00
--> $DIR/test.rs:20:20
|
2018-12-10 05:27:19 +00:00
20 | fn bad(x: &u16, y: &Foo) {}
| ^^^^ help: consider passing by value instead: `Foo`
error: aborting due to 2 previous errors