1
- error: only foreign or `unsafe extern "C"` functions may be C-variadic
1
+ error: only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
2
2
--> $DIR/variadic-ffi-semantic-restrictions.rs:6:19
3
3
|
4
4
LL | fn f1_1(x: isize, ...) {}
5
5
| ^^^
6
6
7
- error: only foreign or `unsafe extern "C"` functions may be C-variadic
7
+ error: only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
8
8
--> $DIR/variadic-ffi-semantic-restrictions.rs:9:9
9
9
|
10
10
LL | fn f1_2(...) {}
11
11
| ^^^
12
12
13
- error: only foreign or `unsafe extern "C"` functions may be C-variadic
13
+ error: only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
14
14
--> $DIR/variadic-ffi-semantic-restrictions.rs:12:30
15
15
|
16
16
LL | extern "C" fn f2_1(x: isize, ...) {}
17
17
| ^^^
18
18
19
- error: only foreign or `unsafe extern "C"` functions may be C-variadic
19
+ error: only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
20
20
--> $DIR/variadic-ffi-semantic-restrictions.rs:15:20
21
21
|
22
22
LL | extern "C" fn f2_2(...) {}
@@ -28,19 +28,19 @@ error: `...` must be the last argument of a C-variadic function
28
28
LL | extern "C" fn f2_3(..., x: isize) {}
29
29
| ^^^
30
30
31
- error: only foreign or `unsafe extern "C"` functions may be C-variadic
31
+ error: only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
32
32
--> $DIR/variadic-ffi-semantic-restrictions.rs:18:20
33
33
|
34
34
LL | extern "C" fn f2_3(..., x: isize) {}
35
35
| ^^^
36
36
37
- error: only foreign or `unsafe extern "C"` functions may be C-variadic
37
+ error: only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
38
38
--> $DIR/variadic-ffi-semantic-restrictions.rs:22:30
39
39
|
40
40
LL | extern "C" fn f3_1(x: isize, ...) {}
41
41
| ^^^
42
42
43
- error: only foreign or `unsafe extern "C"` functions may be C-variadic
43
+ error: only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
44
44
--> $DIR/variadic-ffi-semantic-restrictions.rs:25:20
45
45
|
46
46
LL | extern "C" fn f3_2(...) {}
@@ -52,7 +52,7 @@ error: `...` must be the last argument of a C-variadic function
52
52
LL | extern "C" fn f3_3(..., x: isize) {}
53
53
| ^^^
54
54
55
- error: only foreign or `unsafe extern "C"` functions may be C-variadic
55
+ error: only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
56
56
--> $DIR/variadic-ffi-semantic-restrictions.rs:28:20
57
57
|
58
58
LL | extern "C" fn f3_3(..., x: isize) {}
@@ -70,7 +70,7 @@ error: functions cannot be both `const` and C-variadic
70
70
LL | const extern "C" fn f4_2(x: isize, ...) {}
71
71
| ^^^^^ `const` because of this ^^^ C-variadic because of this
72
72
73
- error: only foreign or `unsafe extern "C"` functions may be C-variadic
73
+ error: only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
74
74
--> $DIR/variadic-ffi-semantic-restrictions.rs:36:36
75
75
|
76
76
LL | const extern "C" fn f4_2(x: isize, ...) {}
@@ -91,7 +91,7 @@ LL | const extern "C" fn f4_3(..., x: isize, ...) {}
91
91
| | C-variadic because of this
92
92
| `const` because of this
93
93
94
- error: only foreign or `unsafe extern "C"` functions may be C-variadic
94
+ error: only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
95
95
--> $DIR/variadic-ffi-semantic-restrictions.rs:41:26
96
96
|
97
97
LL | const extern "C" fn f4_3(..., x: isize, ...) {}
@@ -103,13 +103,13 @@ error: `...` must be the last argument of a C-variadic function
103
103
LL | fn e_f2(..., x: isize);
104
104
| ^^^
105
105
106
- error: only foreign or `unsafe extern "C"` functions may be C-variadic
106
+ error: only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
107
107
--> $DIR/variadic-ffi-semantic-restrictions.rs:54:23
108
108
|
109
109
LL | fn i_f1(x: isize, ...) {}
110
110
| ^^^
111
111
112
- error: only foreign or `unsafe extern "C"` functions may be C-variadic
112
+ error: only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
113
113
--> $DIR/variadic-ffi-semantic-restrictions.rs:56:13
114
114
|
115
115
LL | fn i_f2(...) {}
@@ -121,7 +121,7 @@ error: `...` must be the last argument of a C-variadic function
121
121
LL | fn i_f3(..., x: isize, ...) {}
122
122
| ^^^
123
123
124
- error: only foreign or `unsafe extern "C"` functions may be C-variadic
124
+ error: only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
125
125
--> $DIR/variadic-ffi-semantic-restrictions.rs:58:13
126
126
|
127
127
LL | fn i_f3(..., x: isize, ...) {}
@@ -133,7 +133,7 @@ error: `...` must be the last argument of a C-variadic function
133
133
LL | fn i_f4(..., x: isize, ...) {}
134
134
| ^^^
135
135
136
- error: only foreign or `unsafe extern "C"` functions may be C-variadic
136
+ error: only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
137
137
--> $DIR/variadic-ffi-semantic-restrictions.rs:61:13
138
138
|
139
139
LL | fn i_f4(..., x: isize, ...) {}
@@ -147,31 +147,31 @@ LL | const fn i_f5(x: isize, ...) {}
147
147
| |
148
148
| `const` because of this
149
149
150
- error: only foreign or `unsafe extern "C"` functions may be C-variadic
150
+ error: only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
151
151
--> $DIR/variadic-ffi-semantic-restrictions.rs:64:29
152
152
|
153
153
LL | const fn i_f5(x: isize, ...) {}
154
154
| ^^^
155
155
156
- error: only foreign or `unsafe extern "C"` functions may be C-variadic
156
+ error: only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
157
157
--> $DIR/variadic-ffi-semantic-restrictions.rs:71:23
158
158
|
159
159
LL | fn t_f1(x: isize, ...) {}
160
160
| ^^^
161
161
162
- error: only foreign or `unsafe extern "C"` functions may be C-variadic
162
+ error: only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
163
163
--> $DIR/variadic-ffi-semantic-restrictions.rs:73:23
164
164
|
165
165
LL | fn t_f2(x: isize, ...);
166
166
| ^^^
167
167
168
- error: only foreign or `unsafe extern "C"` functions may be C-variadic
168
+ error: only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
169
169
--> $DIR/variadic-ffi-semantic-restrictions.rs:75:13
170
170
|
171
171
LL | fn t_f3(...) {}
172
172
| ^^^
173
173
174
- error: only foreign or `unsafe extern "C"` functions may be C-variadic
174
+ error: only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
175
175
--> $DIR/variadic-ffi-semantic-restrictions.rs:77:13
176
176
|
177
177
LL | fn t_f4(...);
@@ -183,7 +183,7 @@ error: `...` must be the last argument of a C-variadic function
183
183
LL | fn t_f5(..., x: isize) {}
184
184
| ^^^
185
185
186
- error: only foreign or `unsafe extern "C"` functions may be C-variadic
186
+ error: only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
187
187
--> $DIR/variadic-ffi-semantic-restrictions.rs:79:13
188
188
|
189
189
LL | fn t_f5(..., x: isize) {}
@@ -195,7 +195,7 @@ error: `...` must be the last argument of a C-variadic function
195
195
LL | fn t_f6(..., x: isize);
196
196
| ^^^
197
197
198
- error: only foreign or `unsafe extern "C"` functions may be C-variadic
198
+ error: only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
199
199
--> $DIR/variadic-ffi-semantic-restrictions.rs:82:13
200
200
|
201
201
LL | fn t_f6(..., x: isize);
0 commit comments