mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
116 lines
3.9 KiB
Plaintext
116 lines
3.9 KiB
Plaintext
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: aborting due to 7 previous errors
|
|
|