summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/large_enum_variant.stderr
blob: 0248327262da0f63852ecfa684f6b38c058670f7 (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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
error: large size difference between variants
  --> $DIR/large_enum_variant.rs:12:5
   |
LL |     B([i32; 8000]),
   |     ^^^^^^^^^^^^^^ this variant is 32000 bytes
   |
   = note: `-D clippy::large-enum-variant` implied by `-D warnings`
note: and the second-largest variant is 4 bytes:
  --> $DIR/large_enum_variant.rs:11:5
   |
LL |     A(i32),
   |     ^^^^^^
help: consider boxing the large fields to reduce the total size of the enum
   |
LL |     B(Box<[i32; 8000]>),
   |       ~~~~~~~~~~~~~~~~

error: large size difference between variants
  --> $DIR/large_enum_variant.rs:36:5
   |
LL |     ContainingLargeEnum(LargeEnum),
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this variant is 32004 bytes
   |
note: and the second-largest variant is 8 bytes:
  --> $DIR/large_enum_variant.rs:35:5
   |
LL |     VariantOk(i32, u32),
   |     ^^^^^^^^^^^^^^^^^^^
help: consider boxing the large fields to reduce the total size of the enum
   |
LL |     ContainingLargeEnum(Box<LargeEnum>),
   |                         ~~~~~~~~~~~~~~

error: large size difference between variants
  --> $DIR/large_enum_variant.rs:40:5
   |
LL |     ContainingMoreThanOneField(i32, [i32; 8000], [i32; 9500]),
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this variant is 70004 bytes
   |
note: and the second-largest variant is 8 bytes:
  --> $DIR/large_enum_variant.rs:42:5
   |
LL |     StructLikeLittle { x: i32, y: i32 },
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
help: consider boxing the large fields to reduce the total size of the enum
   |
LL |     ContainingMoreThanOneField(i32, Box<[i32; 8000]>, Box<[i32; 9500]>),
   |                                     ~~~~~~~~~~~~~~~~  ~~~~~~~~~~~~~~~~

error: large size difference between variants
  --> $DIR/large_enum_variant.rs:47:5
   |
LL |     StructLikeLarge { x: [i32; 8000], y: i32 },
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this variant is 32004 bytes
   |
note: and the second-largest variant is 8 bytes:
  --> $DIR/large_enum_variant.rs:46:5
   |
LL |     VariantOk(i32, u32),
   |     ^^^^^^^^^^^^^^^^^^^
help: consider boxing the large fields to reduce the total size of the enum
   |
LL |     StructLikeLarge { x: Box<[i32; 8000]>, y: i32 },
   |                          ~~~~~~~~~~~~~~~~

error: large size difference between variants
  --> $DIR/large_enum_variant.rs:52:5
   |
LL |     StructLikeLarge2 { x: [i32; 8000] },
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this variant is 32000 bytes
   |
note: and the second-largest variant is 8 bytes:
  --> $DIR/large_enum_variant.rs:51:5
   |
LL |     VariantOk(i32, u32),
   |     ^^^^^^^^^^^^^^^^^^^
help: consider boxing the large fields to reduce the total size of the enum
   |
LL |     StructLikeLarge2 { x: Box<[i32; 8000]> },
   |                           ~~~~~~~~~~~~~~~~

error: large size difference between variants
  --> $DIR/large_enum_variant.rs:68:5
   |
LL |     B([u8; 1255]),
   |     ^^^^^^^^^^^^^ this variant is 1255 bytes
   |
note: and the second-largest variant is 200 bytes:
  --> $DIR/large_enum_variant.rs:69:5
   |
LL |     C([u8; 200]),
   |     ^^^^^^^^^^^^
help: consider boxing the large fields to reduce the total size of the enum
   |
LL |     B(Box<[u8; 1255]>),
   |       ~~~~~~~~~~~~~~~

error: large size difference between variants
  --> $DIR/large_enum_variant.rs:74:5
   |
LL |     ContainingMoreThanOneField([i32; 8000], [i32; 2], [i32; 9500], [i32; 30]),
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this variant is 70128 bytes
   |
note: and the second-largest variant is 8 bytes:
  --> $DIR/large_enum_variant.rs:73:5
   |
LL |     VariantOk(i32, u32),
   |     ^^^^^^^^^^^^^^^^^^^
help: consider boxing the large fields to reduce the total size of the enum
   |
LL |     ContainingMoreThanOneField(Box<[i32; 8000]>, [i32; 2], Box<[i32; 9500]>, [i32; 30]),
   |                                ~~~~~~~~~~~~~~~~            ~~~~~~~~~~~~~~~~

error: large size difference between variants
  --> $DIR/large_enum_variant.rs:79:5
   |
LL |     B(Struct2),
   |     ^^^^^^^^^^ this variant is 32000 bytes
   |
note: and the second-largest variant is 4 bytes:
  --> $DIR/large_enum_variant.rs:78:5
   |
LL |     A(Struct<()>),
   |     ^^^^^^^^^^^^^
help: consider boxing the large fields to reduce the total size of the enum
   |
LL |     B(Box<Struct2>),
   |       ~~~~~~~~~~~~

error: large size difference between variants
  --> $DIR/large_enum_variant.rs:104:5
   |
LL |     B([u128; 4000]),
   |     ^^^^^^^^^^^^^^^ this variant is 64000 bytes
   |
note: and the second-largest variant is 1 bytes:
  --> $DIR/large_enum_variant.rs:103:5
   |
LL |     A(bool),
   |     ^^^^^^^
note: boxing a variant would require the type no longer be `Copy`
  --> $DIR/large_enum_variant.rs:102:6
   |
LL | enum CopyableLargeEnum {
   |      ^^^^^^^^^^^^^^^^^
help: consider boxing the large fields to reduce the total size of the enum
  --> $DIR/large_enum_variant.rs:104:5
   |
LL |     B([u128; 4000]),
   |     ^^^^^^^^^^^^^^^

error: large size difference between variants
  --> $DIR/large_enum_variant.rs:109:5
   |
LL |     B([u128; 4000]),
   |     ^^^^^^^^^^^^^^^ this variant is 64000 bytes
   |
note: and the second-largest variant is 1 bytes:
  --> $DIR/large_enum_variant.rs:108:5
   |
LL |     A(bool),
   |     ^^^^^^^
note: boxing a variant would require the type no longer be `Copy`
  --> $DIR/large_enum_variant.rs:107:6
   |
LL | enum ManuallyCopyLargeEnum {
   |      ^^^^^^^^^^^^^^^^^^^^^
help: consider boxing the large fields to reduce the total size of the enum
  --> $DIR/large_enum_variant.rs:109:5
   |
LL |     B([u128; 4000]),
   |     ^^^^^^^^^^^^^^^

error: large size difference between variants
  --> $DIR/large_enum_variant.rs:122:5
   |
LL |     B([u64; 4000]),
   |     ^^^^^^^^^^^^^^ this variant is 32000 bytes
   |
note: and the second-largest variant is 1 bytes:
  --> $DIR/large_enum_variant.rs:121:5
   |
LL |     A(bool, std::marker::PhantomData<T>),
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: boxing a variant would require the type no longer be `Copy`
  --> $DIR/large_enum_variant.rs:120:6
   |
LL | enum SomeGenericPossiblyCopyEnum<T> {
   |      ^^^^^^^^^^^^^^^^^^^^^^^^^^^
help: consider boxing the large fields to reduce the total size of the enum
  --> $DIR/large_enum_variant.rs:122:5
   |
LL |     B([u64; 4000]),
   |     ^^^^^^^^^^^^^^

error: aborting due to 11 previous errors