rust/tests/ui/large_enum_variant.stderr

71 lines
2.3 KiB
Text
Raw Normal View History

2017-02-11 05:04:19 +01:00
error: large size difference between variants
--> $DIR/large_enum_variant.rs:7:5
|
2018-12-27 16:57:55 +01:00
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
2017-07-10 15:29:29 +02:00
|
2018-12-27 16:57:55 +01:00
LL | B(Box<[i32; 8000]>),
2017-07-10 15:29:29 +02:00
| ^^^^^^^^^^^^^^^^
2017-02-11 05:04:19 +01:00
error: large size difference between variants
--> $DIR/large_enum_variant.rs:18:5
|
2018-12-27 16:57:55 +01:00
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
|
2018-12-27 16:57:55 +01:00
LL | C(T, [i32; 8000]),
| ^^^^^^^^^^^^^^^^^
2017-02-11 05:04:19 +01:00
error: large size difference between variants
--> $DIR/large_enum_variant.rs:31:5
|
2018-12-27 16:57:55 +01:00
LL | ContainingLargeEnum(LargeEnum),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
help: consider boxing the large fields to reduce the total size of the enum
2017-07-10 15:29:29 +02:00
|
2018-12-27 16:57:55 +01:00
LL | ContainingLargeEnum(Box<LargeEnum>),
2017-07-10 15:29:29 +02:00
| ^^^^^^^^^^^^^^
2017-02-11 05:04:19 +01:00
error: large size difference between variants
--> $DIR/large_enum_variant.rs:34:5
|
2018-12-27 16:57:55 +01:00
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
|
2018-12-27 16:57:55 +01:00
LL | ContainingMoreThanOneField(i32, [i32; 8000], [i32; 9500]),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2017-02-11 05:04:19 +01:00
error: large size difference between variants
--> $DIR/large_enum_variant.rs:41:5
|
2018-12-27 16:57:55 +01:00
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
|
2018-12-27 16:57:55 +01:00
LL | StructLikeLarge { x: [i32; 8000], y: i32 },
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2017-02-11 05:04:19 +01:00
error: large size difference between variants
--> $DIR/large_enum_variant.rs:46:5
|
2018-12-27 16:57:55 +01:00
LL | StructLikeLarge2 { x: [i32; 8000] },
2017-02-11 05:04:19 +01:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
help: consider boxing the large fields to reduce the total size of the enum
2017-07-10 15:29:29 +02:00
|
2018-12-27 16:57:55 +01:00
LL | StructLikeLarge2 { x: Box<[i32; 8000]> },
2017-07-10 15:29:29 +02:00
| ^^^^^^^^^^^^^^^^
2018-01-16 17:06:27 +01:00
error: aborting due to 6 previous errors