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