2017-02-10 22:04:19 -06:00
|
|
|
error: large size difference between variants
|
2018-10-06 11:18:06 -05:00
|
|
|
--> $DIR/large_enum_variant.rs:20:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-10-06 11:18:06 -05:00
|
|
|
20 | 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-10-06 11:18:06 -05:00
|
|
|
20 | 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-10-06 11:18:06 -05:00
|
|
|
--> $DIR/large_enum_variant.rs:31:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-10-06 11:18:06 -05:00
|
|
|
31 | 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-10-06 11:18:06 -05:00
|
|
|
--> $DIR/large_enum_variant.rs:31:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-10-06 11:18:06 -05:00
|
|
|
31 | 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-10-06 11:18:06 -05:00
|
|
|
--> $DIR/large_enum_variant.rs:44:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-10-06 11:18:06 -05:00
|
|
|
44 | 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-10-06 11:18:06 -05:00
|
|
|
44 | 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-10-06 11:18:06 -05:00
|
|
|
--> $DIR/large_enum_variant.rs:47:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-10-06 11:18:06 -05:00
|
|
|
47 | 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-10-06 11:18:06 -05:00
|
|
|
--> $DIR/large_enum_variant.rs:47:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-10-06 11:18:06 -05:00
|
|
|
47 | 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-10-06 11:18:06 -05:00
|
|
|
--> $DIR/large_enum_variant.rs:54:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-10-06 11:18:06 -05:00
|
|
|
54 | 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-10-06 11:18:06 -05:00
|
|
|
--> $DIR/large_enum_variant.rs:54:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-10-06 11:18:06 -05:00
|
|
|
54 | 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-10-06 11:18:06 -05:00
|
|
|
--> $DIR/large_enum_variant.rs:59:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-10-06 11:18:06 -05:00
|
|
|
59 | 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-10-06 11:18:06 -05:00
|
|
|
59 | 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
|
|
|
|
|