Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 3751177

Browse files
committedJan 6, 2019
Fix CI failures
1 parent 10a00e1 commit 3751177

File tree

2 files changed

+64
-63
lines changed

2 files changed

+64
-63
lines changed
 

‎src/test/ui/feature-gates/feature-gate-abi.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// only-x86_64
12
// ignore-tidy-linelength
23
// gate-test-intrinsics
34
// gate-test-platform_intrinsics

‎src/test/ui/feature-gates/feature-gate-abi.stderr

Lines changed: 63 additions & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -1,501 +1,501 @@
11
error[E0658]: intrinsics are subject to change
2-
--> $DIR/feature-gate-abi.rs:11:1
2+
--> $DIR/feature-gate-abi.rs:12:1
33
|
44
LL | extern "rust-intrinsic" fn f1() {} //~ ERROR intrinsics are subject to change
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
66
|
77
= help: add #![feature(intrinsics)] to the crate attributes to enable
88

99
error[E0658]: platform intrinsics are experimental and possibly buggy (see issue #27731)
10-
--> $DIR/feature-gate-abi.rs:12:1
10+
--> $DIR/feature-gate-abi.rs:13:1
1111
|
1212
LL | extern "platform-intrinsic" fn f2() {} //~ ERROR platform intrinsics are experimental
1313
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1414
|
1515
= help: add #![feature(platform_intrinsics)] to the crate attributes to enable
1616

1717
error[E0658]: vectorcall is experimental and subject to change
18-
--> $DIR/feature-gate-abi.rs:13:1
18+
--> $DIR/feature-gate-abi.rs:14:1
1919
|
2020
LL | extern "vectorcall" fn f3() {} //~ ERROR vectorcall is experimental and subject to change
2121
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2222
|
2323
= help: add #![feature(abi_vectorcall)] to the crate attributes to enable
2424

2525
error[E0658]: rust-call ABI is subject to change (see issue #29625)
26-
--> $DIR/feature-gate-abi.rs:14:1
26+
--> $DIR/feature-gate-abi.rs:15:1
2727
|
2828
LL | extern "rust-call" fn f4() {} //~ ERROR rust-call ABI is subject to change
2929
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3030
|
3131
= help: add #![feature(unboxed_closures)] to the crate attributes to enable
3232

3333
error[E0658]: msp430-interrupt ABI is experimental and subject to change (see issue #38487)
34-
--> $DIR/feature-gate-abi.rs:15:1
34+
--> $DIR/feature-gate-abi.rs:16:1
3535
|
3636
LL | extern "msp430-interrupt" fn f5() {} //~ ERROR msp430-interrupt ABI is experimental
3737
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3838
|
3939
= help: add #![feature(abi_msp430_interrupt)] to the crate attributes to enable
4040

4141
error[E0658]: PTX ABIs are experimental and subject to change (see issue #38788)
42-
--> $DIR/feature-gate-abi.rs:16:1
42+
--> $DIR/feature-gate-abi.rs:17:1
4343
|
4444
LL | extern "ptx-kernel" fn f6() {} //~ ERROR PTX ABIs are experimental and subject to change
4545
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4646
|
4747
= help: add #![feature(abi_ptx)] to the crate attributes to enable
4848

4949
error[E0658]: x86-interrupt ABI is experimental and subject to change (see issue #40180)
50-
--> $DIR/feature-gate-abi.rs:17:1
50+
--> $DIR/feature-gate-abi.rs:18:1
5151
|
5252
LL | extern "x86-interrupt" fn f7() {} //~ ERROR x86-interrupt ABI is experimental
5353
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
5454
|
5555
= help: add #![feature(abi_x86_interrupt)] to the crate attributes to enable
5656

5757
error[E0658]: thiscall is experimental and subject to change
58-
--> $DIR/feature-gate-abi.rs:18:1
58+
--> $DIR/feature-gate-abi.rs:19:1
5959
|
6060
LL | extern "thiscall" fn f8() {} //~ ERROR thiscall is experimental and subject to change
6161
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6262
|
6363
= help: add #![feature(abi_thiscall)] to the crate attributes to enable
6464

6565
error[E0658]: amdgpu-kernel ABI is experimental and subject to change (see issue #51575)
66-
--> $DIR/feature-gate-abi.rs:19:1
66+
--> $DIR/feature-gate-abi.rs:20:1
6767
|
6868
LL | extern "amdgpu-kernel" fn f9() {} //~ ERROR amdgpu-kernel ABI is experimental and subject to change
6969
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
7070
|
7171
= help: add #![feature(abi_amdgpu_kernel)] to the crate attributes to enable
7272

7373
error[E0658]: intrinsics are subject to change
74-
--> $DIR/feature-gate-abi.rs:23:5
74+
--> $DIR/feature-gate-abi.rs:24:5
7575
|
7676
LL | extern "rust-intrinsic" fn m1(); //~ ERROR intrinsics are subject to change
7777
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
7878
|
7979
= help: add #![feature(intrinsics)] to the crate attributes to enable
8080

8181
error[E0658]: platform intrinsics are experimental and possibly buggy (see issue #27731)
82-
--> $DIR/feature-gate-abi.rs:24:5
82+
--> $DIR/feature-gate-abi.rs:25:5
8383
|
8484
LL | extern "platform-intrinsic" fn m2(); //~ ERROR platform intrinsics are experimental
8585
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
8686
|
8787
= help: add #![feature(platform_intrinsics)] to the crate attributes to enable
8888

8989
error[E0658]: vectorcall is experimental and subject to change
90-
--> $DIR/feature-gate-abi.rs:25:5
90+
--> $DIR/feature-gate-abi.rs:26:5
9191
|
9292
LL | extern "vectorcall" fn m3(); //~ ERROR vectorcall is experimental and subject to change
9393
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
9494
|
9595
= help: add #![feature(abi_vectorcall)] to the crate attributes to enable
9696

9797
error[E0658]: rust-call ABI is subject to change (see issue #29625)
98-
--> $DIR/feature-gate-abi.rs:26:5
98+
--> $DIR/feature-gate-abi.rs:27:5
9999
|
100100
LL | extern "rust-call" fn m4(); //~ ERROR rust-call ABI is subject to change
101101
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
102102
|
103103
= help: add #![feature(unboxed_closures)] to the crate attributes to enable
104104

105105
error[E0658]: msp430-interrupt ABI is experimental and subject to change (see issue #38487)
106-
--> $DIR/feature-gate-abi.rs:27:5
106+
--> $DIR/feature-gate-abi.rs:28:5
107107
|
108108
LL | extern "msp430-interrupt" fn m5(); //~ ERROR msp430-interrupt ABI is experimental
109109
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
110110
|
111111
= help: add #![feature(abi_msp430_interrupt)] to the crate attributes to enable
112112

113113
error[E0658]: PTX ABIs are experimental and subject to change (see issue #38788)
114-
--> $DIR/feature-gate-abi.rs:28:5
114+
--> $DIR/feature-gate-abi.rs:29:5
115115
|
116116
LL | extern "ptx-kernel" fn m6(); //~ ERROR PTX ABIs are experimental and subject to change
117117
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
118118
|
119119
= help: add #![feature(abi_ptx)] to the crate attributes to enable
120120

121121
error[E0658]: x86-interrupt ABI is experimental and subject to change (see issue #40180)
122-
--> $DIR/feature-gate-abi.rs:29:5
122+
--> $DIR/feature-gate-abi.rs:30:5
123123
|
124124
LL | extern "x86-interrupt" fn m7(); //~ ERROR x86-interrupt ABI is experimental
125125
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
126126
|
127127
= help: add #![feature(abi_x86_interrupt)] to the crate attributes to enable
128128

129129
error[E0658]: thiscall is experimental and subject to change
130-
--> $DIR/feature-gate-abi.rs:30:5
130+
--> $DIR/feature-gate-abi.rs:31:5
131131
|
132132
LL | extern "thiscall" fn m8(); //~ ERROR thiscall is experimental and subject to change
133133
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
134134
|
135135
= help: add #![feature(abi_thiscall)] to the crate attributes to enable
136136

137137
error[E0658]: amdgpu-kernel ABI is experimental and subject to change (see issue #51575)
138-
--> $DIR/feature-gate-abi.rs:31:5
138+
--> $DIR/feature-gate-abi.rs:32:5
139139
|
140140
LL | extern "amdgpu-kernel" fn m9(); //~ ERROR amdgpu-kernel ABI is experimental and subject to change
141141
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
142142
|
143143
= help: add #![feature(abi_amdgpu_kernel)] to the crate attributes to enable
144144

145145
error[E0658]: intrinsics are subject to change
146-
--> $DIR/feature-gate-abi.rs:33:5
146+
--> $DIR/feature-gate-abi.rs:34:5
147147
|
148148
LL | extern "rust-intrinsic" fn dm1() {} //~ ERROR intrinsics are subject to change
149149
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
150150
|
151151
= help: add #![feature(intrinsics)] to the crate attributes to enable
152152

153153
error[E0658]: platform intrinsics are experimental and possibly buggy (see issue #27731)
154-
--> $DIR/feature-gate-abi.rs:34:5
154+
--> $DIR/feature-gate-abi.rs:35:5
155155
|
156156
LL | extern "platform-intrinsic" fn dm2() {} //~ ERROR platform intrinsics are experimental
157157
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
158158
|
159159
= help: add #![feature(platform_intrinsics)] to the crate attributes to enable
160160

161161
error[E0658]: vectorcall is experimental and subject to change
162-
--> $DIR/feature-gate-abi.rs:35:5
162+
--> $DIR/feature-gate-abi.rs:36:5
163163
|
164164
LL | extern "vectorcall" fn dm3() {} //~ ERROR vectorcall is experimental and subject to change
165165
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
166166
|
167167
= help: add #![feature(abi_vectorcall)] to the crate attributes to enable
168168

169169
error[E0658]: rust-call ABI is subject to change (see issue #29625)
170-
--> $DIR/feature-gate-abi.rs:36:5
170+
--> $DIR/feature-gate-abi.rs:37:5
171171
|
172172
LL | extern "rust-call" fn dm4() {} //~ ERROR rust-call ABI is subject to change
173173
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
174174
|
175175
= help: add #![feature(unboxed_closures)] to the crate attributes to enable
176176

177177
error[E0658]: msp430-interrupt ABI is experimental and subject to change (see issue #38487)
178-
--> $DIR/feature-gate-abi.rs:37:5
178+
--> $DIR/feature-gate-abi.rs:38:5
179179
|
180180
LL | extern "msp430-interrupt" fn dm5() {} //~ ERROR msp430-interrupt ABI is experimental
181181
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
182182
|
183183
= help: add #![feature(abi_msp430_interrupt)] to the crate attributes to enable
184184

185185
error[E0658]: PTX ABIs are experimental and subject to change (see issue #38788)
186-
--> $DIR/feature-gate-abi.rs:38:5
186+
--> $DIR/feature-gate-abi.rs:39:5
187187
|
188188
LL | extern "ptx-kernel" fn dm6() {} //~ ERROR PTX ABIs are experimental and subject to change
189189
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
190190
|
191191
= help: add #![feature(abi_ptx)] to the crate attributes to enable
192192

193193
error[E0658]: x86-interrupt ABI is experimental and subject to change (see issue #40180)
194-
--> $DIR/feature-gate-abi.rs:39:5
194+
--> $DIR/feature-gate-abi.rs:40:5
195195
|
196196
LL | extern "x86-interrupt" fn dm7() {} //~ ERROR x86-interrupt ABI is experimental
197197
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
198198
|
199199
= help: add #![feature(abi_x86_interrupt)] to the crate attributes to enable
200200

201201
error[E0658]: thiscall is experimental and subject to change
202-
--> $DIR/feature-gate-abi.rs:40:5
202+
--> $DIR/feature-gate-abi.rs:41:5
203203
|
204204
LL | extern "thiscall" fn dm8() {} //~ ERROR thiscall is experimental and subject to change
205205
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
206206
|
207207
= help: add #![feature(abi_thiscall)] to the crate attributes to enable
208208

209209
error[E0658]: amdgpu-kernel ABI is experimental and subject to change (see issue #51575)
210-
--> $DIR/feature-gate-abi.rs:41:5
210+
--> $DIR/feature-gate-abi.rs:42:5
211211
|
212212
LL | extern "amdgpu-kernel" fn dm9() {} //~ ERROR amdgpu-kernel ABI is experimental and subject to change
213213
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
214214
|
215215
= help: add #![feature(abi_amdgpu_kernel)] to the crate attributes to enable
216216

217217
error[E0658]: intrinsics are subject to change
218-
--> $DIR/feature-gate-abi.rs:48:5
218+
--> $DIR/feature-gate-abi.rs:49:5
219219
|
220220
LL | extern "rust-intrinsic" fn m1() {} //~ ERROR intrinsics are subject to change
221221
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
222222
|
223223
= help: add #![feature(intrinsics)] to the crate attributes to enable
224224

225225
error[E0658]: platform intrinsics are experimental and possibly buggy (see issue #27731)
226-
--> $DIR/feature-gate-abi.rs:49:5
226+
--> $DIR/feature-gate-abi.rs:50:5
227227
|
228228
LL | extern "platform-intrinsic" fn m2() {} //~ ERROR platform intrinsics are experimental
229229
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
230230
|
231231
= help: add #![feature(platform_intrinsics)] to the crate attributes to enable
232232

233233
error[E0658]: vectorcall is experimental and subject to change
234-
--> $DIR/feature-gate-abi.rs:50:5
234+
--> $DIR/feature-gate-abi.rs:51:5
235235
|
236236
LL | extern "vectorcall" fn m3() {} //~ ERROR vectorcall is experimental and subject to change
237237
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
238238
|
239239
= help: add #![feature(abi_vectorcall)] to the crate attributes to enable
240240

241241
error[E0658]: rust-call ABI is subject to change (see issue #29625)
242-
--> $DIR/feature-gate-abi.rs:51:5
242+
--> $DIR/feature-gate-abi.rs:52:5
243243
|
244244
LL | extern "rust-call" fn m4() {} //~ ERROR rust-call ABI is subject to change
245245
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
246246
|
247247
= help: add #![feature(unboxed_closures)] to the crate attributes to enable
248248

249249
error[E0658]: msp430-interrupt ABI is experimental and subject to change (see issue #38487)
250-
--> $DIR/feature-gate-abi.rs:52:5
250+
--> $DIR/feature-gate-abi.rs:53:5
251251
|
252252
LL | extern "msp430-interrupt" fn m5() {} //~ ERROR msp430-interrupt ABI is experimental
253253
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
254254
|
255255
= help: add #![feature(abi_msp430_interrupt)] to the crate attributes to enable
256256

257257
error[E0658]: PTX ABIs are experimental and subject to change (see issue #38788)
258-
--> $DIR/feature-gate-abi.rs:53:5
258+
--> $DIR/feature-gate-abi.rs:54:5
259259
|
260260
LL | extern "ptx-kernel" fn m6() {} //~ ERROR PTX ABIs are experimental and subject to change
261261
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
262262
|
263263
= help: add #![feature(abi_ptx)] to the crate attributes to enable
264264

265265
error[E0658]: x86-interrupt ABI is experimental and subject to change (see issue #40180)
266-
--> $DIR/feature-gate-abi.rs:54:5
266+
--> $DIR/feature-gate-abi.rs:55:5
267267
|
268268
LL | extern "x86-interrupt" fn m7() {} //~ ERROR x86-interrupt ABI is experimental
269269
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
270270
|
271271
= help: add #![feature(abi_x86_interrupt)] to the crate attributes to enable
272272

273273
error[E0658]: thiscall is experimental and subject to change
274-
--> $DIR/feature-gate-abi.rs:55:5
274+
--> $DIR/feature-gate-abi.rs:56:5
275275
|
276276
LL | extern "thiscall" fn m8() {} //~ ERROR thiscall is experimental and subject to change
277277
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
278278
|
279279
= help: add #![feature(abi_thiscall)] to the crate attributes to enable
280280

281281
error[E0658]: amdgpu-kernel ABI is experimental and subject to change (see issue #51575)
282-
--> $DIR/feature-gate-abi.rs:56:5
282+
--> $DIR/feature-gate-abi.rs:57:5
283283
|
284284
LL | extern "amdgpu-kernel" fn m9() {} //~ ERROR amdgpu-kernel ABI is experimental and subject to change
285285
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
286286
|
287287
= help: add #![feature(abi_amdgpu_kernel)] to the crate attributes to enable
288288

289289
error[E0658]: intrinsics are subject to change
290-
--> $DIR/feature-gate-abi.rs:61:5
290+
--> $DIR/feature-gate-abi.rs:62:5
291291
|
292292
LL | extern "rust-intrinsic" fn im1() {} //~ ERROR intrinsics are subject to change
293293
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
294294
|
295295
= help: add #![feature(intrinsics)] to the crate attributes to enable
296296

297297
error[E0658]: platform intrinsics are experimental and possibly buggy (see issue #27731)
298-
--> $DIR/feature-gate-abi.rs:62:5
298+
--> $DIR/feature-gate-abi.rs:63:5
299299
|
300300
LL | extern "platform-intrinsic" fn im2() {} //~ ERROR platform intrinsics are experimental
301301
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
302302
|
303303
= help: add #![feature(platform_intrinsics)] to the crate attributes to enable
304304

305305
error[E0658]: vectorcall is experimental and subject to change
306-
--> $DIR/feature-gate-abi.rs:63:5
306+
--> $DIR/feature-gate-abi.rs:64:5
307307
|
308308
LL | extern "vectorcall" fn im3() {} //~ ERROR vectorcall is experimental and subject to change
309309
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
310310
|
311311
= help: add #![feature(abi_vectorcall)] to the crate attributes to enable
312312

313313
error[E0658]: rust-call ABI is subject to change (see issue #29625)
314-
--> $DIR/feature-gate-abi.rs:64:5
314+
--> $DIR/feature-gate-abi.rs:65:5
315315
|
316316
LL | extern "rust-call" fn im4() {} //~ ERROR rust-call ABI is subject to change
317317
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
318318
|
319319
= help: add #![feature(unboxed_closures)] to the crate attributes to enable
320320

321321
error[E0658]: msp430-interrupt ABI is experimental and subject to change (see issue #38487)
322-
--> $DIR/feature-gate-abi.rs:65:5
322+
--> $DIR/feature-gate-abi.rs:66:5
323323
|
324324
LL | extern "msp430-interrupt" fn im5() {} //~ ERROR msp430-interrupt ABI is experimental
325325
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
326326
|
327327
= help: add #![feature(abi_msp430_interrupt)] to the crate attributes to enable
328328

329329
error[E0658]: PTX ABIs are experimental and subject to change (see issue #38788)
330-
--> $DIR/feature-gate-abi.rs:66:5
330+
--> $DIR/feature-gate-abi.rs:67:5
331331
|
332332
LL | extern "ptx-kernel" fn im6() {} //~ ERROR PTX ABIs are experimental and subject to change
333333
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
334334
|
335335
= help: add #![feature(abi_ptx)] to the crate attributes to enable
336336

337337
error[E0658]: x86-interrupt ABI is experimental and subject to change (see issue #40180)
338-
--> $DIR/feature-gate-abi.rs:67:5
338+
--> $DIR/feature-gate-abi.rs:68:5
339339
|
340340
LL | extern "x86-interrupt" fn im7() {} //~ ERROR x86-interrupt ABI is experimental
341341
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
342342
|
343343
= help: add #![feature(abi_x86_interrupt)] to the crate attributes to enable
344344

345345
error[E0658]: thiscall is experimental and subject to change
346-
--> $DIR/feature-gate-abi.rs:68:5
346+
--> $DIR/feature-gate-abi.rs:69:5
347347
|
348348
LL | extern "thiscall" fn im8() {} //~ ERROR thiscall is experimental and subject to change
349349
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
350350
|
351351
= help: add #![feature(abi_thiscall)] to the crate attributes to enable
352352

353353
error[E0658]: amdgpu-kernel ABI is experimental and subject to change (see issue #51575)
354-
--> $DIR/feature-gate-abi.rs:69:5
354+
--> $DIR/feature-gate-abi.rs:70:5
355355
|
356356
LL | extern "amdgpu-kernel" fn im9() {} //~ ERROR amdgpu-kernel ABI is experimental and subject to change
357357
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
358358
|
359359
= help: add #![feature(abi_amdgpu_kernel)] to the crate attributes to enable
360360

361361
error[E0658]: intrinsics are subject to change
362-
--> $DIR/feature-gate-abi.rs:73:11
362+
--> $DIR/feature-gate-abi.rs:74:11
363363
|
364364
LL | type A1 = extern "rust-intrinsic" fn(); //~ ERROR intrinsics are subject to change
365365
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
366366
|
367367
= help: add #![feature(intrinsics)] to the crate attributes to enable
368368

369369
error[E0658]: platform intrinsics are experimental and possibly buggy (see issue #27731)
370-
--> $DIR/feature-gate-abi.rs:74:11
370+
--> $DIR/feature-gate-abi.rs:75:11
371371
|
372372
LL | type A2 = extern "platform-intrinsic" fn(); //~ ERROR platform intrinsics are experimental
373373
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
374374
|
375375
= help: add #![feature(platform_intrinsics)] to the crate attributes to enable
376376

377377
error[E0658]: vectorcall is experimental and subject to change
378-
--> $DIR/feature-gate-abi.rs:75:11
378+
--> $DIR/feature-gate-abi.rs:76:11
379379
|
380380
LL | type A3 = extern "vectorcall" fn(); //~ ERROR vectorcall is experimental and subject to change
381381
| ^^^^^^^^^^^^^^^^^^^^^^^^
382382
|
383383
= help: add #![feature(abi_vectorcall)] to the crate attributes to enable
384384

385385
error[E0658]: rust-call ABI is subject to change (see issue #29625)
386-
--> $DIR/feature-gate-abi.rs:76:11
386+
--> $DIR/feature-gate-abi.rs:77:11
387387
|
388388
LL | type A4 = extern "rust-call" fn(); //~ ERROR rust-call ABI is subject to change
389389
| ^^^^^^^^^^^^^^^^^^^^^^^
390390
|
391391
= help: add #![feature(unboxed_closures)] to the crate attributes to enable
392392

393393
error[E0658]: msp430-interrupt ABI is experimental and subject to change (see issue #38487)
394-
--> $DIR/feature-gate-abi.rs:77:11
394+
--> $DIR/feature-gate-abi.rs:78:11
395395
|
396396
LL | type A5 = extern "msp430-interrupt" fn(); //~ ERROR msp430-interrupt ABI is experimental
397397
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
398398
|
399399
= help: add #![feature(abi_msp430_interrupt)] to the crate attributes to enable
400400

401401
error[E0658]: PTX ABIs are experimental and subject to change (see issue #38788)
402-
--> $DIR/feature-gate-abi.rs:78:11
402+
--> $DIR/feature-gate-abi.rs:79:11
403403
|
404404
LL | type A6 = extern "ptx-kernel" fn (); //~ ERROR PTX ABIs are experimental and subject to change
405405
| ^^^^^^^^^^^^^^^^^^^^^^^^^
406406
|
407407
= help: add #![feature(abi_ptx)] to the crate attributes to enable
408408

409409
error[E0658]: x86-interrupt ABI is experimental and subject to change (see issue #40180)
410-
--> $DIR/feature-gate-abi.rs:79:11
410+
--> $DIR/feature-gate-abi.rs:80:11
411411
|
412412
LL | type A7 = extern "x86-interrupt" fn(); //~ ERROR x86-interrupt ABI is experimental
413413
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
414414
|
415415
= help: add #![feature(abi_x86_interrupt)] to the crate attributes to enable
416416

417417
error[E0658]: thiscall is experimental and subject to change
418-
--> $DIR/feature-gate-abi.rs:80:11
418+
--> $DIR/feature-gate-abi.rs:81:11
419419
|
420420
LL | type A8 = extern "thiscall" fn(); //~ ERROR thiscall is experimental and subject to change
421421
| ^^^^^^^^^^^^^^^^^^^^^^
422422
|
423423
= help: add #![feature(abi_thiscall)] to the crate attributes to enable
424424

425425
error[E0658]: amdgpu-kernel ABI is experimental and subject to change (see issue #51575)
426-
--> $DIR/feature-gate-abi.rs:81:11
426+
--> $DIR/feature-gate-abi.rs:82:11
427427
|
428428
LL | type A9 = extern "amdgpu-kernel" fn(); //~ ERROR amdgpu-kernel ABI is experimental and subject to change
429429
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
430430
|
431431
= help: add #![feature(abi_amdgpu_kernel)] to the crate attributes to enable
432432

433433
error[E0658]: intrinsics are subject to change
434-
--> $DIR/feature-gate-abi.rs:84:1
434+
--> $DIR/feature-gate-abi.rs:85:1
435435
|
436436
LL | extern "rust-intrinsic" {} //~ ERROR intrinsics are subject to change
437437
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
438438
|
439439
= help: add #![feature(intrinsics)] to the crate attributes to enable
440440

441441
error[E0658]: platform intrinsics are experimental and possibly buggy (see issue #27731)
442-
--> $DIR/feature-gate-abi.rs:85:1
442+
--> $DIR/feature-gate-abi.rs:86:1
443443
|
444444
LL | extern "platform-intrinsic" {} //~ ERROR platform intrinsics are experimental
445445
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
446446
|
447447
= help: add #![feature(platform_intrinsics)] to the crate attributes to enable
448448

449449
error[E0658]: vectorcall is experimental and subject to change
450-
--> $DIR/feature-gate-abi.rs:86:1
450+
--> $DIR/feature-gate-abi.rs:87:1
451451
|
452452
LL | extern "vectorcall" {} //~ ERROR vectorcall is experimental and subject to change
453453
| ^^^^^^^^^^^^^^^^^^^^^^
454454
|
455455
= help: add #![feature(abi_vectorcall)] to the crate attributes to enable
456456

457457
error[E0658]: rust-call ABI is subject to change (see issue #29625)
458-
--> $DIR/feature-gate-abi.rs:87:1
458+
--> $DIR/feature-gate-abi.rs:88:1
459459
|
460460
LL | extern "rust-call" {} //~ ERROR rust-call ABI is subject to change
461461
| ^^^^^^^^^^^^^^^^^^^^^
462462
|
463463
= help: add #![feature(unboxed_closures)] to the crate attributes to enable
464464

465465
error[E0658]: msp430-interrupt ABI is experimental and subject to change (see issue #38487)
466-
--> $DIR/feature-gate-abi.rs:88:1
466+
--> $DIR/feature-gate-abi.rs:89:1
467467
|
468468
LL | extern "msp430-interrupt" {} //~ ERROR msp430-interrupt ABI is experimental
469469
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
470470
|
471471
= help: add #![feature(abi_msp430_interrupt)] to the crate attributes to enable
472472

473473
error[E0658]: PTX ABIs are experimental and subject to change (see issue #38788)
474-
--> $DIR/feature-gate-abi.rs:89:1
474+
--> $DIR/feature-gate-abi.rs:90:1
475475
|
476476
LL | extern "ptx-kernel" {} //~ ERROR PTX ABIs are experimental and subject to change
477477
| ^^^^^^^^^^^^^^^^^^^^^^
478478
|
479479
= help: add #![feature(abi_ptx)] to the crate attributes to enable
480480

481481
error[E0658]: x86-interrupt ABI is experimental and subject to change (see issue #40180)
482-
--> $DIR/feature-gate-abi.rs:90:1
482+
--> $DIR/feature-gate-abi.rs:91:1
483483
|
484484
LL | extern "x86-interrupt" {} //~ ERROR x86-interrupt ABI is experimental
485485
| ^^^^^^^^^^^^^^^^^^^^^^^^^
486486
|
487487
= help: add #![feature(abi_x86_interrupt)] to the crate attributes to enable
488488

489489
error[E0658]: thiscall is experimental and subject to change
490-
--> $DIR/feature-gate-abi.rs:91:1
490+
--> $DIR/feature-gate-abi.rs:92:1
491491
|
492492
LL | extern "thiscall" {} //~ ERROR thiscall is experimental and subject to change
493493
| ^^^^^^^^^^^^^^^^^^^^
494494
|
495495
= help: add #![feature(abi_thiscall)] to the crate attributes to enable
496496

497497
error[E0658]: amdgpu-kernel ABI is experimental and subject to change (see issue #51575)
498-
--> $DIR/feature-gate-abi.rs:92:1
498+
--> $DIR/feature-gate-abi.rs:93:1
499499
|
500500
LL | extern "amdgpu-kernel" {} //~ ERROR amdgpu-kernel ABI is experimental and subject to change
501501
| ^^^^^^^^^^^^^^^^^^^^^^^^^

0 commit comments

Comments
 (0)
Please sign in to comment.