summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/redundant_allocation_fixable.stderr
blob: fdd76ef17a55e884de278a3902ee9d03b5a6da46 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
error: usage of `Box<&T>`
  --> $DIR/redundant_allocation_fixable.rs:26:30
   |
LL |     pub fn box_test1<T>(foo: Box<&T>) {}
   |                              ^^^^^^^ help: try: `&T`
   |
   = note: `-D clippy::redundant-allocation` implied by `-D warnings`
   = note: `&T` is already a pointer, `Box<&T>` allocates a pointer on the heap

error: usage of `Box<&MyStruct>`
  --> $DIR/redundant_allocation_fixable.rs:28:27
   |
LL |     pub fn box_test2(foo: Box<&MyStruct>) {}
   |                           ^^^^^^^^^^^^^^ help: try: `&MyStruct`
   |
   = note: `&MyStruct` is already a pointer, `Box<&MyStruct>` allocates a pointer on the heap

error: usage of `Box<&MyEnum>`
  --> $DIR/redundant_allocation_fixable.rs:30:27
   |
LL |     pub fn box_test3(foo: Box<&MyEnum>) {}
   |                           ^^^^^^^^^^^^ help: try: `&MyEnum`
   |
   = note: `&MyEnum` is already a pointer, `Box<&MyEnum>` allocates a pointer on the heap

error: usage of `Box<Box<T>>`
  --> $DIR/redundant_allocation_fixable.rs:34:30
   |
LL |     pub fn box_test5<T>(foo: Box<Box<T>>) {}
   |                              ^^^^^^^^^^^ help: try: `Box<T>`
   |
   = note: `Box<T>` is already on the heap, `Box<Box<T>>` makes an extra allocation

error: usage of `Rc<&T>`
  --> $DIR/redundant_allocation_fixable.rs:45:29
   |
LL |     pub fn rc_test1<T>(foo: Rc<&T>) {}
   |                             ^^^^^^ help: try: `&T`
   |
   = note: `&T` is already a pointer, `Rc<&T>` allocates a pointer on the heap

error: usage of `Rc<&MyStruct>`
  --> $DIR/redundant_allocation_fixable.rs:47:26
   |
LL |     pub fn rc_test2(foo: Rc<&MyStruct>) {}
   |                          ^^^^^^^^^^^^^ help: try: `&MyStruct`
   |
   = note: `&MyStruct` is already a pointer, `Rc<&MyStruct>` allocates a pointer on the heap

error: usage of `Rc<&MyEnum>`
  --> $DIR/redundant_allocation_fixable.rs:49:26
   |
LL |     pub fn rc_test3(foo: Rc<&MyEnum>) {}
   |                          ^^^^^^^^^^^ help: try: `&MyEnum`
   |
   = note: `&MyEnum` is already a pointer, `Rc<&MyEnum>` allocates a pointer on the heap

error: usage of `Rc<Rc<bool>>`
  --> $DIR/redundant_allocation_fixable.rs:53:24
   |
LL |     pub fn rc_test6(a: Rc<Rc<bool>>) {}
   |                        ^^^^^^^^^^^^ help: try: `Rc<bool>`
   |
   = note: `Rc<bool>` is already on the heap, `Rc<Rc<bool>>` makes an extra allocation

error: usage of `Arc<&T>`
  --> $DIR/redundant_allocation_fixable.rs:64:30
   |
LL |     pub fn arc_test1<T>(foo: Arc<&T>) {}
   |                              ^^^^^^^ help: try: `&T`
   |
   = note: `&T` is already a pointer, `Arc<&T>` allocates a pointer on the heap

error: usage of `Arc<&MyStruct>`
  --> $DIR/redundant_allocation_fixable.rs:66:27
   |
LL |     pub fn arc_test2(foo: Arc<&MyStruct>) {}
   |                           ^^^^^^^^^^^^^^ help: try: `&MyStruct`
   |
   = note: `&MyStruct` is already a pointer, `Arc<&MyStruct>` allocates a pointer on the heap

error: usage of `Arc<&MyEnum>`
  --> $DIR/redundant_allocation_fixable.rs:68:27
   |
LL |     pub fn arc_test3(foo: Arc<&MyEnum>) {}
   |                           ^^^^^^^^^^^^ help: try: `&MyEnum`
   |
   = note: `&MyEnum` is already a pointer, `Arc<&MyEnum>` allocates a pointer on the heap

error: usage of `Arc<Arc<bool>>`
  --> $DIR/redundant_allocation_fixable.rs:72:25
   |
LL |     pub fn arc_test7(a: Arc<Arc<bool>>) {}
   |                         ^^^^^^^^^^^^^^ help: try: `Arc<bool>`
   |
   = note: `Arc<bool>` is already on the heap, `Arc<Arc<bool>>` makes an extra allocation

error: aborting due to 12 previous errors