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, 31 insertions, 19 deletions
diff --git a/tests/ui/pin_project/packed-enum.stderr b/tests/ui/pin_project/packed-enum.stderr
index afc8b30..1872211 100644
--- a/tests/ui/pin_project/packed-enum.stderr
+++ b/tests/ui/pin_project/packed-enum.stderr
@@ -1,30 +1,42 @@
+error: #[repr(packed)] attribute should be applied to a struct or union
+ --> tests/ui/pin_project/packed-enum.rs:13:8
+ |
+13 | #[repr(packed)] //~ ERROR E0517
+ | ^^^^^^
+
+error: #[repr(packed)] attribute should be applied to a struct or union
+ --> tests/ui/pin_project/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:3:8
- |
-3 | #[repr(packed)] //~ ERROR E0517
- | ^^^^^^
-4 | / enum E1 {
-5 | | V(()),
-6 | | }
- | |_- not a struct or union
+ --> tests/ui/pin_project/packed-enum.rs:7:8
+ |
+7 | #[repr(packed)] //~ ERROR E0517
+ | ^^^^^^
+8 | / enum E1 {
+9 | | V(()),
+10 | | }
+ | |_- not a struct or union
error[E0517]: attribute should be applied to a struct or union
- --> $DIR/packed-enum.rs:9:8
+ --> tests/ui/pin_project/packed-enum.rs:13:8
|
-9 | #[repr(packed)] //~ ERROR E0517
+13 | #[repr(packed)] //~ ERROR E0517
| ^^^^^^
-10 | / enum E2 {
-11 | | V(()),
-12 | | }
+14 | / enum E2 {
+15 | | V(()),
+16 | | }
| |_- not a struct or union
error[E0517]: attribute should be applied to a struct or union
- --> $DIR/packed-enum.rs:14:8
+ --> tests/ui/pin_project/packed-enum.rs:18:8
|
-14 | #[repr(packed)] //~ ERROR E0517
+18 | #[repr(packed)] //~ ERROR E0517
| ^^^^^^
-15 | #[pin_project]
-16 | / enum E3 {
-17 | | V(()),
-18 | | }
+19 | #[pin_project]
+20 | / enum E3 {
+21 | | V(()),
+22 | | }
| |_- not a struct or union