]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/large_enum_variant.stderr
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / large_enum_variant.stderr
index af42f905458bced98bd7039824d15778aadd3037..839d16bd9a2b4b742d4dd1785f05b6589e07c817 100644 (file)
@@ -1,69 +1,69 @@
 error: large size difference between variants
-  --> $DIR/large_enum_variant.rs:10:5
+  --> $DIR/large_enum_variant.rs:16:5
    |
-10 |     B([i32; 8000]),
+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
    |
-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:27:5
    |
-21 |     C(T, [i32; 8000]),
+LL |     C(T, [i32; 8000]),
    |     ^^^^^^^^^^^^^^^^^
    |
 help: consider boxing the large fields to reduce the total size of the enum
-  --> $DIR/large_enum_variant.rs:21:5
+  --> $DIR/large_enum_variant.rs:27:5
    |
-21 |     C(T, [i32; 8000]),
+LL |     C(T, [i32; 8000]),
    |     ^^^^^^^^^^^^^^^^^
 
 error: large size difference between variants
-  --> $DIR/large_enum_variant.rs:34:5
+  --> $DIR/large_enum_variant.rs:40:5
    |
-34 |     ContainingLargeEnum(LargeEnum),
+LL |     ContainingLargeEnum(LargeEnum),
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 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
+  --> $DIR/large_enum_variant.rs:43:5
    |
-37 |     ContainingMoreThanOneField(i32, [i32; 8000], [i32; 9500]),
+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:37:5
+  --> $DIR/large_enum_variant.rs:43:5
    |
-37 |     ContainingMoreThanOneField(i32, [i32; 8000], [i32; 9500]),
+LL |     ContainingMoreThanOneField(i32, [i32; 8000], [i32; 9500]),
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 error: large size difference between variants
-  --> $DIR/large_enum_variant.rs:44:5
+  --> $DIR/large_enum_variant.rs:50:5
    |
-44 |     StructLikeLarge { x: [i32; 8000], y: i32 },
+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:44:5
+  --> $DIR/large_enum_variant.rs:50: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:55:5
    |
-49 |     StructLikeLarge2 { x: [i32; 8000] },
+LL |     StructLikeLarge2 { x: [i32; 8000] },
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 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 6 previous errors