summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui-toml/toml_trivially_copy/test.stderr
blob: d2b55eff16dbf9f12d2a4bbc422a00ec884b6037 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error: this argument (N byte) is passed by reference, but would be more efficient if passed by value (limit: N byte)
  --> $DIR/test.rs:14:11
   |
LL | fn bad(x: &u16, y: &Foo) {}
   |           ^^^^ help: consider passing by value instead: `u16`
   |
   = note: `-D clippy::trivially-copy-pass-by-ref` implied by `-D warnings`

error: this argument (N byte) is passed by reference, but would be more efficient if passed by value (limit: N byte)
  --> $DIR/test.rs:14:20
   |
LL | fn bad(x: &u16, y: &Foo) {}
   |                    ^^^^ help: consider passing by value instead: `Foo`

error: aborting due to 2 previous errors