summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/large_enum_variant.stderr
blob: 8ce641a81f29746289c9b750b11cad95ba133cf2 (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
error: large size difference between variants
  --> $DIR/large_enum_variant.rs:7: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:6: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:31:5
   |
LL |     ContainingLargeEnum(LargeEnum),
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this variant is 32004 bytes
   |
note: and the second-largest variant is 8 bytes:
  --> $DIR/large_enum_variant.rs:30: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:41: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:40:5
   |
LL |     VariantOk(i32, u32),
   |     ^^^^^^^^^^^^^^^^^^^
help: consider boxing the large fields to reduce the total size of the enum
  --> $DIR/large_enum_variant.rs:41:5
   |
LL |     StructLikeLarge { x: [i32; 8000], y: i32 },
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: large size difference between variants
  --> $DIR/large_enum_variant.rs:46: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:45: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: aborting due to 4 previous errors