summaryrefslogtreecommitdiffstats
path: root/src/test/ui/repr/repr-packed-contains-align.stderr
blob: 4c3a960cad2a6f2d677992774db0f63cfa565412 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
error[E0588]: packed type cannot transitively contain a `#[repr(align)]` type
  --> $DIR/repr-packed-contains-align.rs:22:1
   |
LL | struct SC(SA);
   | ^^^^^^^^^
   |
note: `SA` has a `#[repr(align)]` attribute
  --> $DIR/repr-packed-contains-align.rs:5:1
   |
LL | struct SA(i32);
   | ^^^^^^^^^

error[E0588]: packed type cannot transitively contain a `#[repr(align)]` type
  --> $DIR/repr-packed-contains-align.rs:25:1
   |
LL | struct SD(SB);
   | ^^^^^^^^^
   |
note: `SA` has a `#[repr(align)]` attribute
  --> $DIR/repr-packed-contains-align.rs:5:1
   |
LL | struct SA(i32);
   | ^^^^^^^^^
note: `SD` contains a field of type `SB`
  --> $DIR/repr-packed-contains-align.rs:25:11
   |
LL | struct SD(SB);
   |           ^^
note: ...which contains a field of type `SA`
  --> $DIR/repr-packed-contains-align.rs:8:11
   |
LL | struct SB(SA);
   |           ^^

error[E0588]: packed type cannot transitively contain a `#[repr(align)]` type
  --> $DIR/repr-packed-contains-align.rs:28:1
   |
LL | struct SE(UA);
   | ^^^^^^^^^
   |
note: `UA` has a `#[repr(align)]` attribute
  --> $DIR/repr-packed-contains-align.rs:12:1
   |
LL | union UA {
   | ^^^^^^^^

error[E0588]: packed type cannot transitively contain a `#[repr(align)]` type
  --> $DIR/repr-packed-contains-align.rs:31:1
   |
LL | struct SF(UB);
   | ^^^^^^^^^
   |
note: `UA` has a `#[repr(align)]` attribute
  --> $DIR/repr-packed-contains-align.rs:12:1
   |
LL | union UA {
   | ^^^^^^^^
note: `SF` contains a field of type `UB`
  --> $DIR/repr-packed-contains-align.rs:31:11
   |
LL | struct SF(UB);
   |           ^^
note: ...which contains a field of type `UA`
  --> $DIR/repr-packed-contains-align.rs:18:5
   |
LL |     a: UA
   |     ^

error[E0588]: packed type cannot transitively contain a `#[repr(align)]` type
  --> $DIR/repr-packed-contains-align.rs:34:1
   |
LL | union UC {
   | ^^^^^^^^
   |
note: `UA` has a `#[repr(align)]` attribute
  --> $DIR/repr-packed-contains-align.rs:12:1
   |
LL | union UA {
   | ^^^^^^^^

error[E0588]: packed type cannot transitively contain a `#[repr(align)]` type
  --> $DIR/repr-packed-contains-align.rs:39:1
   |
LL | union UD {
   | ^^^^^^^^
   |
note: `UA` has a `#[repr(align)]` attribute
  --> $DIR/repr-packed-contains-align.rs:12:1
   |
LL | union UA {
   | ^^^^^^^^
note: `UD` contains a field of type `UB`
  --> $DIR/repr-packed-contains-align.rs:40:5
   |
LL |     n: UB
   |     ^
note: ...which contains a field of type `UA`
  --> $DIR/repr-packed-contains-align.rs:18:5
   |
LL |     a: UA
   |     ^

error[E0588]: packed type cannot transitively contain a `#[repr(align)]` type
  --> $DIR/repr-packed-contains-align.rs:44:1
   |
LL | union UE {
   | ^^^^^^^^
   |
note: `SA` has a `#[repr(align)]` attribute
  --> $DIR/repr-packed-contains-align.rs:5:1
   |
LL | struct SA(i32);
   | ^^^^^^^^^

error[E0588]: packed type cannot transitively contain a `#[repr(align)]` type
  --> $DIR/repr-packed-contains-align.rs:49:1
   |
LL | union UF {
   | ^^^^^^^^
   |
note: `SA` has a `#[repr(align)]` attribute
  --> $DIR/repr-packed-contains-align.rs:5:1
   |
LL | struct SA(i32);
   | ^^^^^^^^^
note: `UF` contains a field of type `SB`
  --> $DIR/repr-packed-contains-align.rs:50:5
   |
LL |     n: SB
   |     ^
note: ...which contains a field of type `SA`
  --> $DIR/repr-packed-contains-align.rs:8:11
   |
LL | struct SB(SA);
   |           ^^

error: aborting due to 8 previous errors

For more information about this error, try `rustc --explain E0588`.