mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
72 lines
2.3 KiB
Text
72 lines
2.3 KiB
Text
error: large size difference between variants
|
|
--> $DIR/large_enum_variant.rs:7:5
|
|
|
|
|
LL | B([i32; 8000]),
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::large-enum-variant` implied by `-D warnings`
|
|
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:18:5
|
|
|
|
|
LL | C(T, [i32; 8000]),
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: consider boxing the large fields to reduce the total size of the enum
|
|
--> $DIR/large_enum_variant.rs:18:5
|
|
|
|
|
LL | C(T, [i32; 8000]),
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
error: large size difference between variants
|
|
--> $DIR/large_enum_variant.rs:31:5
|
|
|
|
|
LL | ContainingLargeEnum(LargeEnum),
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
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:34:5
|
|
|
|
|
LL | ContainingMoreThanOneField(i32, [i32; 8000], [i32; 9500]),
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: consider boxing the large fields to reduce the total size of the enum
|
|
--> $DIR/large_enum_variant.rs:34:5
|
|
|
|
|
LL | ContainingMoreThanOneField(i32, [i32; 8000], [i32; 9500]),
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: large size difference between variants
|
|
--> $DIR/large_enum_variant.rs:41:5
|
|
|
|
|
LL | StructLikeLarge { x: [i32; 8000], y: i32 },
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
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] },
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: consider boxing the large fields to reduce the total size of the enum
|
|
|
|
|
LL | StructLikeLarge2 { x: Box<[i32; 8000]> },
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 6 previous errors
|
|
|