]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/conflicting-repr-hints.stderr
Rollup merge of #55448 - Mokosha:SortAtIndex, r=bluss
[rust.git] / src / test / ui / conflicting-repr-hints.stderr
index 01b72d93823cc555002764145ef060c129227881..c39055f01721b29d73a84b2a1e310e2c59ca3646 100644 (file)
@@ -1,65 +1,65 @@
 warning[E0566]: conflicting representation hints
-  --> $DIR/conflicting-repr-hints.rs:19:8
+  --> $DIR/conflicting-repr-hints.rs:9:8
    |
-LL | #[repr(C, u64)] //~ WARNING conflicting representation hints
+LL | #[repr(C, u64)]
    |        ^  ^^^
 
 warning[E0566]: conflicting representation hints
-  --> $DIR/conflicting-repr-hints.rs:22:8
+  --> $DIR/conflicting-repr-hints.rs:12:8
    |
-LL | #[repr(u32, u64)] //~ WARNING conflicting representation hints
+LL | #[repr(u32, u64)]
    |        ^^^  ^^^
 
 error[E0587]: type has conflicting packed and align representation hints
-  --> $DIR/conflicting-repr-hints.rs:29:1
+  --> $DIR/conflicting-repr-hints.rs:19:1
    |
-LL | struct F(i32); //~ ERROR type has conflicting packed and align representation hints
+LL | struct F(i32);
    | ^^^^^^^^^^^^^^
 
 error[E0587]: type has conflicting packed and align representation hints
-  --> $DIR/conflicting-repr-hints.rs:33:1
+  --> $DIR/conflicting-repr-hints.rs:23:1
    |
-LL | struct G(i32); //~ ERROR type has conflicting packed and align representation hints
+LL | struct G(i32);
    | ^^^^^^^^^^^^^^
 
 error[E0587]: type has conflicting packed and align representation hints
-  --> $DIR/conflicting-repr-hints.rs:37:1
+  --> $DIR/conflicting-repr-hints.rs:27:1
    |
-LL | struct H(i32); //~ ERROR type has conflicting packed and align representation hints
+LL | struct H(i32);
    | ^^^^^^^^^^^^^^
 
 error[E0634]: type has conflicting packed representation hints
-  --> $DIR/conflicting-repr-hints.rs:40:1
+  --> $DIR/conflicting-repr-hints.rs:30:1
    |
-LL | struct I(i32); //~ ERROR type has conflicting packed representation hints
+LL | struct I(i32);
    | ^^^^^^^^^^^^^^
 
 error[E0634]: type has conflicting packed representation hints
-  --> $DIR/conflicting-repr-hints.rs:44:1
+  --> $DIR/conflicting-repr-hints.rs:34:1
    |
-LL | struct J(i32); //~ ERROR type has conflicting packed representation hints
+LL | struct J(i32);
    | ^^^^^^^^^^^^^^
 
 error[E0587]: type has conflicting packed and align representation hints
-  --> $DIR/conflicting-repr-hints.rs:50:1
+  --> $DIR/conflicting-repr-hints.rs:40:1
    |
-LL | / union X { //~ ERROR type has conflicting packed and align representation hints
+LL | / union X {
 LL | |     i: i32
 LL | | }
    | |_^
 
 error[E0587]: type has conflicting packed and align representation hints
-  --> $DIR/conflicting-repr-hints.rs:56:1
+  --> $DIR/conflicting-repr-hints.rs:46:1
    |
-LL | / union Y { //~ ERROR type has conflicting packed and align representation hints
+LL | / union Y {
 LL | |     i: i32
 LL | | }
    | |_^
 
 error[E0587]: type has conflicting packed and align representation hints
-  --> $DIR/conflicting-repr-hints.rs:62:1
+  --> $DIR/conflicting-repr-hints.rs:52:1
    |
-LL | / union Z { //~ ERROR type has conflicting packed and align representation hints
+LL | / union Z {
 LL | |     i: i32
 LL | | }
    | |_^