2017-02-10 22:04:19 -06:00
|
|
|
error: large size difference between variants
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/large_enum_variant.rs:16:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
16 | 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-09 23:27:19 -06:00
|
|
|
16 | 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
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/large_enum_variant.rs:27:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
27 | C(T, [i32; 8000]),
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: consider boxing the large fields to reduce the total size of the enum
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/large_enum_variant.rs:27:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
27 | C(T, [i32; 8000]),
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
2017-02-10 22:04:19 -06:00
|
|
|
error: large size difference between variants
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/large_enum_variant.rs:40:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
40 | ContainingLargeEnum(LargeEnum),
|
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-09 23:27:19 -06:00
|
|
|
40 | 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
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/large_enum_variant.rs:43:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
43 | ContainingMoreThanOneField(i32, [i32; 8000], [i32; 9500]),
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: consider boxing the large fields to reduce the total size of the enum
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/large_enum_variant.rs:43:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
43 | ContainingMoreThanOneField(i32, [i32; 8000], [i32; 9500]),
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2017-02-10 22:04:19 -06:00
|
|
|
error: large size difference between variants
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/large_enum_variant.rs:50:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
50 | 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
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/large_enum_variant.rs:50:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
50 | 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
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/large_enum_variant.rs:55:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
55 | StructLikeLarge2 { x: [i32; 8000] },
|
2017-02-10 22:04:19 -06: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-09 23:27:19 -06:00
|
|
|
55 | StructLikeLarge2 { x: Box<[i32; 8000]> },
|
2017-07-10 08:29:29 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2018-01-16 10:06:27 -06:00
|
|
|
error: aborting due to 6 previous errors
|
|
|
|
|