]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/large_enum_variant.stderr
iterate List by value
[rust.git] / tests / ui / large_enum_variant.stderr
index 5c6aac7d4ee689e3370b4d3c971e82aa3e8eabcc..8ce641a81f29746289c9b750b11cad95ba133cf2 100644 (file)
@@ -1,68 +1,68 @@
 error: large size difference between variants
-  --> $DIR/large_enum_variant.rs:10:5
+  --> $DIR/large_enum_variant.rs:7:5
    |
-10 |     B([i32; 8000]),
-   |     ^^^^^^^^^^^^^^
+LL |     B([i32; 8000]),
+   |     ^^^^^^^^^^^^^^ this variant is 32000 bytes
    |
-   = note: `-D large-enum-variant` implied by `-D warnings`
+   = note: `-D clippy::large-enum-variant` implied by `-D warnings`
+note: and the second-largest variant is 4 bytes:
+  --> $DIR/large_enum_variant.rs:6:5
+   |
+LL |     A(i32),
+   |     ^^^^^^
 help: consider boxing the large fields to reduce the total size of the enum
    |
-10 |     B(Box<[i32; 8000]>),
+LL |     B(Box<[i32; 8000]>),
    |       ^^^^^^^^^^^^^^^^
 
 error: large size difference between variants
-  --> $DIR/large_enum_variant.rs:21:5
+  --> $DIR/large_enum_variant.rs:31:5
    |
-21 |     C(T, [i32; 8000]),
-   |     ^^^^^^^^^^^^^^^^^
+LL |     ContainingLargeEnum(LargeEnum),
+   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this variant is 32004 bytes
    |
-help: consider boxing the large fields to reduce the total size of the enum
-  --> $DIR/large_enum_variant.rs:21:5
+note: and the second-largest variant is 8 bytes:
+  --> $DIR/large_enum_variant.rs:30:5
    |
-21 |     C(T, [i32; 8000]),
-   |     ^^^^^^^^^^^^^^^^^
-
-error: large size difference between variants
-  --> $DIR/large_enum_variant.rs:34:5
-   |
-34 |     ContainingLargeEnum(LargeEnum),
-   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+LL |     VariantOk(i32, u32),
+   |     ^^^^^^^^^^^^^^^^^^^
 help: consider boxing the large fields to reduce the total size of the enum
    |
-34 |     ContainingLargeEnum(Box<LargeEnum>),
+LL |     ContainingLargeEnum(Box<LargeEnum>),
    |                         ^^^^^^^^^^^^^^
 
 error: large size difference between variants
-  --> $DIR/large_enum_variant.rs:37:5
-   |
-37 |     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:37:5
+  --> $DIR/large_enum_variant.rs:41:5
    |
-37 |     ContainingMoreThanOneField(i32, [i32; 8000], [i32; 9500]),
-   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-error: large size difference between variants
-  --> $DIR/large_enum_variant.rs:44:5
+LL |     StructLikeLarge { x: [i32; 8000], y: i32 },
+   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this variant is 32004 bytes
    |
-44 |     StructLikeLarge { x: [i32; 8000], y: i32 },
-   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+note: and the second-largest variant is 8 bytes:
+  --> $DIR/large_enum_variant.rs:40:5
    |
+LL |     VariantOk(i32, u32),
+   |     ^^^^^^^^^^^^^^^^^^^
 help: consider boxing the large fields to reduce the total size of the enum
-  --> $DIR/large_enum_variant.rs:44:5
+  --> $DIR/large_enum_variant.rs:41:5
    |
-44 |     StructLikeLarge { x: [i32; 8000], y: i32 },
+LL |     StructLikeLarge { x: [i32; 8000], y: i32 },
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 error: large size difference between variants
-  --> $DIR/large_enum_variant.rs:49:5
+  --> $DIR/large_enum_variant.rs:46:5
    |
-49 |     StructLikeLarge2 { x: [i32; 8000] },
-   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+LL |     StructLikeLarge2 { x: [i32; 8000] },
+   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this variant is 32000 bytes
+   |
+note: and the second-largest variant is 8 bytes:
+  --> $DIR/large_enum_variant.rs:45:5
+   |
+LL |     VariantOk(i32, u32),
+   |     ^^^^^^^^^^^^^^^^^^^
 help: consider boxing the large fields to reduce the total size of the enum
    |
-49 |     StructLikeLarge2 { x: Box<[i32; 8000]> },
+LL |     StructLikeLarge2 { x: Box<[i32; 8000]> },
    |                           ^^^^^^^^^^^^^^^^
 
+error: aborting due to 4 previous errors
+