summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/crashes/needless_pass_by_value-w-late-bound.stderr
blob: 7a0a648974fc768f20b0b3da4b27a8ae64b7d8ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error: this argument is passed by value, but not consumed in the function body
  --> $DIR/needless_pass_by_value-w-late-bound.rs:7:12
   |
LL | fn test(x: Foo<'_>) {}
   |            ^^^^^^^ help: consider taking a reference instead: `&Foo<'_>`
   |
help: consider marking this type as `Copy`
  --> $DIR/needless_pass_by_value-w-late-bound.rs:5:1
   |
LL | struct Foo<'a>(&'a [(); 100]);
   | ^^^^^^^^^^^^^^
   = note: `-D clippy::needless-pass-by-value` implied by `-D warnings`

error: aborting due to previous error