rust/clippy_tests/examples/large_enum_variant.stderr

75 lines
2.3 KiB
Plaintext
Raw Normal View History

2017-02-10 22:04:19 -06:00
error: large size difference between variants
--> large_enum_variant.rs:10:5
|
2017-02-08 07:58:07 -06:00
10 | B([i32; 8000]),
| ^^^^^^^^^^^^^^
|
= note: `-D large-enum-variant` implied by `-D warnings`
help: consider boxing the large fields to reduce the total size of the enum
2017-07-10 08:29:29 -05:00
|
10 | B(Box<[i32; 8000]>),
| ^^^^^^^^^^^^^^^^
2017-02-10 22:04:19 -06:00
error: large size difference between variants
--> large_enum_variant.rs:21:5
|
2017-02-10 22:04:19 -06:00
21 | C(T, [i32; 8000]),
| ^^^^^^^^^^^^^^^^^
|
help: consider boxing the large fields to reduce the total size of the enum
--> large_enum_variant.rs:21:5
|
2017-02-10 22:04:19 -06:00
21 | C(T, [i32; 8000]),
| ^^^^^^^^^^^^^^^^^
2017-02-10 22:04:19 -06:00
error: large size difference between variants
--> large_enum_variant.rs:34:5
|
2017-02-10 22:04:19 -06:00
34 | ContainingLargeEnum(LargeEnum),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
help: consider boxing the large fields to reduce the total size of the enum
2017-07-10 08:29:29 -05:00
|
34 | ContainingLargeEnum(Box<LargeEnum>),
| ^^^^^^^^^^^^^^
2017-02-10 22:04:19 -06:00
error: large size difference between variants
--> large_enum_variant.rs:37:5
|
2017-02-10 22:04:19 -06:00
37 | ContainingMoreThanOneField(i32, [i32; 8000], [i32; 9500]),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
help: consider boxing the large fields to reduce the total size of the enum
--> large_enum_variant.rs:37:5
|
2017-02-10 22:04:19 -06:00
37 | ContainingMoreThanOneField(i32, [i32; 8000], [i32; 9500]),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2017-02-10 22:04:19 -06:00
error: large size difference between variants
--> large_enum_variant.rs:44:5
|
2017-02-10 22:04:19 -06:00
44 | StructLikeLarge { x: [i32; 8000], y: i32 },
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
help: consider boxing the large fields to reduce the total size of the enum
--> large_enum_variant.rs:44:5
|
2017-02-10 22:04:19 -06:00
44 | StructLikeLarge { x: [i32; 8000], y: i32 },
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2017-02-10 22:04:19 -06:00
error: large size difference between variants
--> large_enum_variant.rs:49:5
|
2017-02-10 22:04:19 -06:00
49 | StructLikeLarge2 { x: [i32; 8000] },
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
help: consider boxing the large fields to reduce the total size of the enum
2017-07-10 08:29:29 -05:00
|
49 | StructLikeLarge2 { x: Box<[i32; 8000]> },
| ^^^^^^^^^^^^^^^^
2017-07-02 23:37:30 -05:00
error: aborting due to 6 previous errors
To learn more, run the command again with --verbose.