aboutsummaryrefslogtreecommitdiff
path: root/tests/ui/pin_project/packed-enum.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/pin_project/packed-enum.stderr')
-rw-r--r--tests/ui/pin_project/packed-enum.stderr50
1 files changed, 19 insertions, 31 deletions
diff --git a/tests/ui/pin_project/packed-enum.stderr b/tests/ui/pin_project/packed-enum.stderr
index 0951944..afc8b30 100644
--- a/tests/ui/pin_project/packed-enum.stderr
+++ b/tests/ui/pin_project/packed-enum.stderr
@@ -1,42 +1,30 @@
-error: #[repr(packed)] attribute should be applied to a struct or union
- --> $DIR/packed-enum.rs:13:8
- |
-13 | #[repr(packed)] //~ ERROR E0517
- | ^^^^^^
-
-error: #[repr(packed)] attribute should be applied to a struct or union
- --> $DIR/packed-enum.rs:18:8
- |
-18 | #[repr(packed)] //~ ERROR E0517
- | ^^^^^^
-
error[E0517]: attribute should be applied to a struct or union
- --> $DIR/packed-enum.rs:7:8
- |
-7 | #[repr(packed)] //~ ERROR E0517
- | ^^^^^^
-8 | / enum E1 {
-9 | | V(()),
-10 | | }
- | |_- not a struct or union
+ --> $DIR/packed-enum.rs:3:8
+ |
+3 | #[repr(packed)] //~ ERROR E0517
+ | ^^^^^^
+4 | / enum E1 {
+5 | | V(()),
+6 | | }
+ | |_- not a struct or union
error[E0517]: attribute should be applied to a struct or union
- --> $DIR/packed-enum.rs:13:8
+ --> $DIR/packed-enum.rs:9:8
|
-13 | #[repr(packed)] //~ ERROR E0517
+9 | #[repr(packed)] //~ ERROR E0517
| ^^^^^^
-14 | / enum E2 {
-15 | | V(()),
-16 | | }
+10 | / enum E2 {
+11 | | V(()),
+12 | | }
| |_- not a struct or union
error[E0517]: attribute should be applied to a struct or union
- --> $DIR/packed-enum.rs:18:8
+ --> $DIR/packed-enum.rs:14:8
|
-18 | #[repr(packed)] //~ ERROR E0517
+14 | #[repr(packed)] //~ ERROR E0517
| ^^^^^^
-19 | #[pin_project]
-20 | / enum E3 {
-21 | | V(()),
-22 | | }
+15 | #[pin_project]
+16 | / enum E3 {
+17 | | V(()),
+18 | | }
| |_- not a struct or union