summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/large_types_passed_by_value.stderr
blob: 5f42dcfb9b5218e43238f9d3bf26777e8aa630a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
error: this argument (N byte) is passed by value, but might be more efficient if passed by reference (limit: N byte)
  --> $DIR/large_types_passed_by_value.rs:20:11
   |
LL | fn bad(a: LargeAndCopy) {}
   |           ^^^^^^^^^^^^ help: consider passing by reference instead: `&LargeAndCopy`
   |
   = note: `-D clippy::large-types-passed-by-value` implied by `-D warnings`

error: this argument (N byte) is passed by value, but might be more efficient if passed by reference (limit: N byte)
  --> $DIR/large_types_passed_by_value.rs:25:37
   |
LL |     fn other_is_not_ok(self, other: LargeAndCopy) {}
   |                                     ^^^^^^^^^^^^ help: consider passing by reference instead: `&LargeAndCopy`

error: this argument (N byte) is passed by value, but might be more efficient if passed by reference (limit: N byte)
  --> $DIR/large_types_passed_by_value.rs:31:36
   |
LL |     fn devoure_array(&self, array: [u8; 6666]);
   |                                    ^^^^^^^^^^ help: consider passing by reference instead: `&[u8; 6666]`

error: this argument (N byte) is passed by value, but might be more efficient if passed by reference (limit: N byte)
  --> $DIR/large_types_passed_by_value.rs:32:34
   |
LL |     fn devoure_tuple(&self, tup: (LargeAndCopy, LargeAndCopy));
   |                                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider passing by reference instead: `&(LargeAndCopy, LargeAndCopy)`

error: this argument (N byte) is passed by value, but might be more efficient if passed by reference (limit: N byte)
  --> $DIR/large_types_passed_by_value.rs:33:50
   |
LL |     fn devoure_array_and_tuple_wow(&self, array: [u8; 6666], tup: (LargeAndCopy, LargeAndCopy));
   |                                                  ^^^^^^^^^^ help: consider passing by reference instead: `&[u8; 6666]`

error: this argument (N byte) is passed by value, but might be more efficient if passed by reference (limit: N byte)
  --> $DIR/large_types_passed_by_value.rs:33:67
   |
LL |     fn devoure_array_and_tuple_wow(&self, array: [u8; 6666], tup: (LargeAndCopy, LargeAndCopy));
   |                                                                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider passing by reference instead: `&(LargeAndCopy, LargeAndCopy)`

error: this argument (N byte) is passed by value, but might be more efficient if passed by reference (limit: N byte)
  --> $DIR/large_types_passed_by_value.rs:58:17
   |
LL | fn foo_never(x: LargeAndCopy) {
   |                 ^^^^^^^^^^^^ help: consider passing by reference instead: `&LargeAndCopy`

error: this argument (N byte) is passed by value, but might be more efficient if passed by reference (limit: N byte)
  --> $DIR/large_types_passed_by_value.rs:62:11
   |
LL | fn foo(x: LargeAndCopy) {
   |           ^^^^^^^^^^^^ help: consider passing by reference instead: `&LargeAndCopy`

error: aborting due to 8 previous errors