2017-02-11 04:04:19 +00:00
|
|
|
error: large size difference between variants
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/large_enum_variant.rs:7:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | B([i32; 8000]),
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::large-enum-variant` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
help: consider boxing the large fields to reduce the total size of the enum
|
2017-07-10 13:29:29 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | B(Box<[i32; 8000]>),
|
2017-07-10 13:29:29 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2017-02-11 04:04:19 +00:00
|
|
|
error: large size difference between variants
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/large_enum_variant.rs:18:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | C(T, [i32; 8000]),
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: consider boxing the large fields to reduce the total size of the enum
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/large_enum_variant.rs:18:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | C(T, [i32; 8000]),
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
2017-02-11 04:04:19 +00:00
|
|
|
error: large size difference between variants
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/large_enum_variant.rs:31:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | ContainingLargeEnum(LargeEnum),
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2019-10-26 19:53:42 +00:00
|
|
|
|
|
2017-02-07 20:05:30 +00:00
|
|
|
help: consider boxing the large fields to reduce the total size of the enum
|
2017-07-10 13:29:29 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | ContainingLargeEnum(Box<LargeEnum>),
|
2017-07-10 13:29:29 +00:00
|
|
|
| ^^^^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2017-02-11 04:04:19 +00:00
|
|
|
error: large size difference between variants
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/large_enum_variant.rs:34:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | ContainingMoreThanOneField(i32, [i32; 8000], [i32; 9500]),
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: consider boxing the large fields to reduce the total size of the enum
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/large_enum_variant.rs:34:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | ContainingMoreThanOneField(i32, [i32; 8000], [i32; 9500]),
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2017-02-11 04:04:19 +00:00
|
|
|
error: large size difference between variants
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/large_enum_variant.rs:41:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | StructLikeLarge { x: [i32; 8000], y: i32 },
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: consider boxing the large fields to reduce the total size of the enum
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/large_enum_variant.rs:41:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | StructLikeLarge { x: [i32; 8000], y: i32 },
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2017-02-11 04:04:19 +00:00
|
|
|
error: large size difference between variants
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/large_enum_variant.rs:46:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | StructLikeLarge2 { x: [i32; 8000] },
|
2017-02-11 04:04:19 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2019-10-26 19:53:42 +00:00
|
|
|
|
|
2017-02-07 20:05:30 +00:00
|
|
|
help: consider boxing the large fields to reduce the total size of the enum
|
2017-07-10 13:29:29 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | StructLikeLarge2 { x: Box<[i32; 8000]> },
|
2017-07-10 13:29:29 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2018-01-16 16:06:27 +00:00
|
|
|
error: aborting due to 6 previous errors
|
|
|
|
|