|
1 | 1 | error[E0658]: intrinsics are subject to change
|
2 |
| - --> $DIR/feature-gate-abi.rs:11:1 |
| 2 | + --> $DIR/feature-gate-abi.rs:12:1 |
3 | 3 | |
|
4 | 4 | LL | extern "rust-intrinsic" fn f1() {} //~ ERROR intrinsics are subject to change
|
5 | 5 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
6 | 6 | |
|
7 | 7 | = help: add #![feature(intrinsics)] to the crate attributes to enable
|
8 | 8 |
|
9 | 9 | 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 |
11 | 11 | |
|
12 | 12 | LL | extern "platform-intrinsic" fn f2() {} //~ ERROR platform intrinsics are experimental
|
13 | 13 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
14 | 14 | |
|
15 | 15 | = help: add #![feature(platform_intrinsics)] to the crate attributes to enable
|
16 | 16 |
|
17 | 17 | 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 |
19 | 19 | |
|
20 | 20 | LL | extern "vectorcall" fn f3() {} //~ ERROR vectorcall is experimental and subject to change
|
21 | 21 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
22 | 22 | |
|
23 | 23 | = help: add #![feature(abi_vectorcall)] to the crate attributes to enable
|
24 | 24 |
|
25 | 25 | 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 |
27 | 27 | |
|
28 | 28 | LL | extern "rust-call" fn f4() {} //~ ERROR rust-call ABI is subject to change
|
29 | 29 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
30 | 30 | |
|
31 | 31 | = help: add #![feature(unboxed_closures)] to the crate attributes to enable
|
32 | 32 |
|
33 | 33 | 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 |
35 | 35 | |
|
36 | 36 | LL | extern "msp430-interrupt" fn f5() {} //~ ERROR msp430-interrupt ABI is experimental
|
37 | 37 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
38 | 38 | |
|
39 | 39 | = help: add #![feature(abi_msp430_interrupt)] to the crate attributes to enable
|
40 | 40 |
|
41 | 41 | 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 |
43 | 43 | |
|
44 | 44 | LL | extern "ptx-kernel" fn f6() {} //~ ERROR PTX ABIs are experimental and subject to change
|
45 | 45 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
46 | 46 | |
|
47 | 47 | = help: add #![feature(abi_ptx)] to the crate attributes to enable
|
48 | 48 |
|
49 | 49 | 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 |
51 | 51 | |
|
52 | 52 | LL | extern "x86-interrupt" fn f7() {} //~ ERROR x86-interrupt ABI is experimental
|
53 | 53 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
54 | 54 | |
|
55 | 55 | = help: add #![feature(abi_x86_interrupt)] to the crate attributes to enable
|
56 | 56 |
|
57 | 57 | 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 |
59 | 59 | |
|
60 | 60 | LL | extern "thiscall" fn f8() {} //~ ERROR thiscall is experimental and subject to change
|
61 | 61 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
62 | 62 | |
|
63 | 63 | = help: add #![feature(abi_thiscall)] to the crate attributes to enable
|
64 | 64 |
|
65 | 65 | 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 |
67 | 67 | |
|
68 | 68 | LL | extern "amdgpu-kernel" fn f9() {} //~ ERROR amdgpu-kernel ABI is experimental and subject to change
|
69 | 69 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
70 | 70 | |
|
71 | 71 | = help: add #![feature(abi_amdgpu_kernel)] to the crate attributes to enable
|
72 | 72 |
|
73 | 73 | error[E0658]: intrinsics are subject to change
|
74 |
| - --> $DIR/feature-gate-abi.rs:23:5 |
| 74 | + --> $DIR/feature-gate-abi.rs:24:5 |
75 | 75 | |
|
76 | 76 | LL | extern "rust-intrinsic" fn m1(); //~ ERROR intrinsics are subject to change
|
77 | 77 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
78 | 78 | |
|
79 | 79 | = help: add #![feature(intrinsics)] to the crate attributes to enable
|
80 | 80 |
|
81 | 81 | 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 |
83 | 83 | |
|
84 | 84 | LL | extern "platform-intrinsic" fn m2(); //~ ERROR platform intrinsics are experimental
|
85 | 85 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
86 | 86 | |
|
87 | 87 | = help: add #![feature(platform_intrinsics)] to the crate attributes to enable
|
88 | 88 |
|
89 | 89 | 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 |
91 | 91 | |
|
92 | 92 | LL | extern "vectorcall" fn m3(); //~ ERROR vectorcall is experimental and subject to change
|
93 | 93 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
94 | 94 | |
|
95 | 95 | = help: add #![feature(abi_vectorcall)] to the crate attributes to enable
|
96 | 96 |
|
97 | 97 | 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 |
99 | 99 | |
|
100 | 100 | LL | extern "rust-call" fn m4(); //~ ERROR rust-call ABI is subject to change
|
101 | 101 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
102 | 102 | |
|
103 | 103 | = help: add #![feature(unboxed_closures)] to the crate attributes to enable
|
104 | 104 |
|
105 | 105 | 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 |
107 | 107 | |
|
108 | 108 | LL | extern "msp430-interrupt" fn m5(); //~ ERROR msp430-interrupt ABI is experimental
|
109 | 109 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
110 | 110 | |
|
111 | 111 | = help: add #![feature(abi_msp430_interrupt)] to the crate attributes to enable
|
112 | 112 |
|
113 | 113 | 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 |
115 | 115 | |
|
116 | 116 | LL | extern "ptx-kernel" fn m6(); //~ ERROR PTX ABIs are experimental and subject to change
|
117 | 117 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
118 | 118 | |
|
119 | 119 | = help: add #![feature(abi_ptx)] to the crate attributes to enable
|
120 | 120 |
|
121 | 121 | 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 |
123 | 123 | |
|
124 | 124 | LL | extern "x86-interrupt" fn m7(); //~ ERROR x86-interrupt ABI is experimental
|
125 | 125 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
126 | 126 | |
|
127 | 127 | = help: add #![feature(abi_x86_interrupt)] to the crate attributes to enable
|
128 | 128 |
|
129 | 129 | 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 |
131 | 131 | |
|
132 | 132 | LL | extern "thiscall" fn m8(); //~ ERROR thiscall is experimental and subject to change
|
133 | 133 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
134 | 134 | |
|
135 | 135 | = help: add #![feature(abi_thiscall)] to the crate attributes to enable
|
136 | 136 |
|
137 | 137 | 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 |
139 | 139 | |
|
140 | 140 | LL | extern "amdgpu-kernel" fn m9(); //~ ERROR amdgpu-kernel ABI is experimental and subject to change
|
141 | 141 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
142 | 142 | |
|
143 | 143 | = help: add #![feature(abi_amdgpu_kernel)] to the crate attributes to enable
|
144 | 144 |
|
145 | 145 | error[E0658]: intrinsics are subject to change
|
146 |
| - --> $DIR/feature-gate-abi.rs:33:5 |
| 146 | + --> $DIR/feature-gate-abi.rs:34:5 |
147 | 147 | |
|
148 | 148 | LL | extern "rust-intrinsic" fn dm1() {} //~ ERROR intrinsics are subject to change
|
149 | 149 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
150 | 150 | |
|
151 | 151 | = help: add #![feature(intrinsics)] to the crate attributes to enable
|
152 | 152 |
|
153 | 153 | 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 |
155 | 155 | |
|
156 | 156 | LL | extern "platform-intrinsic" fn dm2() {} //~ ERROR platform intrinsics are experimental
|
157 | 157 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
158 | 158 | |
|
159 | 159 | = help: add #![feature(platform_intrinsics)] to the crate attributes to enable
|
160 | 160 |
|
161 | 161 | 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 |
163 | 163 | |
|
164 | 164 | LL | extern "vectorcall" fn dm3() {} //~ ERROR vectorcall is experimental and subject to change
|
165 | 165 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
166 | 166 | |
|
167 | 167 | = help: add #![feature(abi_vectorcall)] to the crate attributes to enable
|
168 | 168 |
|
169 | 169 | 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 |
171 | 171 | |
|
172 | 172 | LL | extern "rust-call" fn dm4() {} //~ ERROR rust-call ABI is subject to change
|
173 | 173 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
174 | 174 | |
|
175 | 175 | = help: add #![feature(unboxed_closures)] to the crate attributes to enable
|
176 | 176 |
|
177 | 177 | 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 |
179 | 179 | |
|
180 | 180 | LL | extern "msp430-interrupt" fn dm5() {} //~ ERROR msp430-interrupt ABI is experimental
|
181 | 181 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
182 | 182 | |
|
183 | 183 | = help: add #![feature(abi_msp430_interrupt)] to the crate attributes to enable
|
184 | 184 |
|
185 | 185 | 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 |
187 | 187 | |
|
188 | 188 | LL | extern "ptx-kernel" fn dm6() {} //~ ERROR PTX ABIs are experimental and subject to change
|
189 | 189 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
190 | 190 | |
|
191 | 191 | = help: add #![feature(abi_ptx)] to the crate attributes to enable
|
192 | 192 |
|
193 | 193 | 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 |
195 | 195 | |
|
196 | 196 | LL | extern "x86-interrupt" fn dm7() {} //~ ERROR x86-interrupt ABI is experimental
|
197 | 197 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
198 | 198 | |
|
199 | 199 | = help: add #![feature(abi_x86_interrupt)] to the crate attributes to enable
|
200 | 200 |
|
201 | 201 | 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 |
203 | 203 | |
|
204 | 204 | LL | extern "thiscall" fn dm8() {} //~ ERROR thiscall is experimental and subject to change
|
205 | 205 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
206 | 206 | |
|
207 | 207 | = help: add #![feature(abi_thiscall)] to the crate attributes to enable
|
208 | 208 |
|
209 | 209 | 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 |
211 | 211 | |
|
212 | 212 | LL | extern "amdgpu-kernel" fn dm9() {} //~ ERROR amdgpu-kernel ABI is experimental and subject to change
|
213 | 213 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
214 | 214 | |
|
215 | 215 | = help: add #![feature(abi_amdgpu_kernel)] to the crate attributes to enable
|
216 | 216 |
|
217 | 217 | error[E0658]: intrinsics are subject to change
|
218 |
| - --> $DIR/feature-gate-abi.rs:48:5 |
| 218 | + --> $DIR/feature-gate-abi.rs:49:5 |
219 | 219 | |
|
220 | 220 | LL | extern "rust-intrinsic" fn m1() {} //~ ERROR intrinsics are subject to change
|
221 | 221 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
222 | 222 | |
|
223 | 223 | = help: add #![feature(intrinsics)] to the crate attributes to enable
|
224 | 224 |
|
225 | 225 | 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 |
227 | 227 | |
|
228 | 228 | LL | extern "platform-intrinsic" fn m2() {} //~ ERROR platform intrinsics are experimental
|
229 | 229 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
230 | 230 | |
|
231 | 231 | = help: add #![feature(platform_intrinsics)] to the crate attributes to enable
|
232 | 232 |
|
233 | 233 | 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 |
235 | 235 | |
|
236 | 236 | LL | extern "vectorcall" fn m3() {} //~ ERROR vectorcall is experimental and subject to change
|
237 | 237 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
238 | 238 | |
|
239 | 239 | = help: add #![feature(abi_vectorcall)] to the crate attributes to enable
|
240 | 240 |
|
241 | 241 | 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 |
243 | 243 | |
|
244 | 244 | LL | extern "rust-call" fn m4() {} //~ ERROR rust-call ABI is subject to change
|
245 | 245 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
246 | 246 | |
|
247 | 247 | = help: add #![feature(unboxed_closures)] to the crate attributes to enable
|
248 | 248 |
|
249 | 249 | 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 |
251 | 251 | |
|
252 | 252 | LL | extern "msp430-interrupt" fn m5() {} //~ ERROR msp430-interrupt ABI is experimental
|
253 | 253 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
254 | 254 | |
|
255 | 255 | = help: add #![feature(abi_msp430_interrupt)] to the crate attributes to enable
|
256 | 256 |
|
257 | 257 | 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 |
259 | 259 | |
|
260 | 260 | LL | extern "ptx-kernel" fn m6() {} //~ ERROR PTX ABIs are experimental and subject to change
|
261 | 261 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
262 | 262 | |
|
263 | 263 | = help: add #![feature(abi_ptx)] to the crate attributes to enable
|
264 | 264 |
|
265 | 265 | 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 |
267 | 267 | |
|
268 | 268 | LL | extern "x86-interrupt" fn m7() {} //~ ERROR x86-interrupt ABI is experimental
|
269 | 269 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
270 | 270 | |
|
271 | 271 | = help: add #![feature(abi_x86_interrupt)] to the crate attributes to enable
|
272 | 272 |
|
273 | 273 | 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 |
275 | 275 | |
|
276 | 276 | LL | extern "thiscall" fn m8() {} //~ ERROR thiscall is experimental and subject to change
|
277 | 277 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
278 | 278 | |
|
279 | 279 | = help: add #![feature(abi_thiscall)] to the crate attributes to enable
|
280 | 280 |
|
281 | 281 | 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 |
283 | 283 | |
|
284 | 284 | LL | extern "amdgpu-kernel" fn m9() {} //~ ERROR amdgpu-kernel ABI is experimental and subject to change
|
285 | 285 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
286 | 286 | |
|
287 | 287 | = help: add #![feature(abi_amdgpu_kernel)] to the crate attributes to enable
|
288 | 288 |
|
289 | 289 | error[E0658]: intrinsics are subject to change
|
290 |
| - --> $DIR/feature-gate-abi.rs:61:5 |
| 290 | + --> $DIR/feature-gate-abi.rs:62:5 |
291 | 291 | |
|
292 | 292 | LL | extern "rust-intrinsic" fn im1() {} //~ ERROR intrinsics are subject to change
|
293 | 293 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
294 | 294 | |
|
295 | 295 | = help: add #![feature(intrinsics)] to the crate attributes to enable
|
296 | 296 |
|
297 | 297 | 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 |
299 | 299 | |
|
300 | 300 | LL | extern "platform-intrinsic" fn im2() {} //~ ERROR platform intrinsics are experimental
|
301 | 301 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
302 | 302 | |
|
303 | 303 | = help: add #![feature(platform_intrinsics)] to the crate attributes to enable
|
304 | 304 |
|
305 | 305 | 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 |
307 | 307 | |
|
308 | 308 | LL | extern "vectorcall" fn im3() {} //~ ERROR vectorcall is experimental and subject to change
|
309 | 309 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
310 | 310 | |
|
311 | 311 | = help: add #![feature(abi_vectorcall)] to the crate attributes to enable
|
312 | 312 |
|
313 | 313 | 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 |
315 | 315 | |
|
316 | 316 | LL | extern "rust-call" fn im4() {} //~ ERROR rust-call ABI is subject to change
|
317 | 317 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
318 | 318 | |
|
319 | 319 | = help: add #![feature(unboxed_closures)] to the crate attributes to enable
|
320 | 320 |
|
321 | 321 | 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 |
323 | 323 | |
|
324 | 324 | LL | extern "msp430-interrupt" fn im5() {} //~ ERROR msp430-interrupt ABI is experimental
|
325 | 325 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
326 | 326 | |
|
327 | 327 | = help: add #![feature(abi_msp430_interrupt)] to the crate attributes to enable
|
328 | 328 |
|
329 | 329 | 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 |
331 | 331 | |
|
332 | 332 | LL | extern "ptx-kernel" fn im6() {} //~ ERROR PTX ABIs are experimental and subject to change
|
333 | 333 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
334 | 334 | |
|
335 | 335 | = help: add #![feature(abi_ptx)] to the crate attributes to enable
|
336 | 336 |
|
337 | 337 | 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 |
339 | 339 | |
|
340 | 340 | LL | extern "x86-interrupt" fn im7() {} //~ ERROR x86-interrupt ABI is experimental
|
341 | 341 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
342 | 342 | |
|
343 | 343 | = help: add #![feature(abi_x86_interrupt)] to the crate attributes to enable
|
344 | 344 |
|
345 | 345 | 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 |
347 | 347 | |
|
348 | 348 | LL | extern "thiscall" fn im8() {} //~ ERROR thiscall is experimental and subject to change
|
349 | 349 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
350 | 350 | |
|
351 | 351 | = help: add #![feature(abi_thiscall)] to the crate attributes to enable
|
352 | 352 |
|
353 | 353 | 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 |
355 | 355 | |
|
356 | 356 | LL | extern "amdgpu-kernel" fn im9() {} //~ ERROR amdgpu-kernel ABI is experimental and subject to change
|
357 | 357 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
358 | 358 | |
|
359 | 359 | = help: add #![feature(abi_amdgpu_kernel)] to the crate attributes to enable
|
360 | 360 |
|
361 | 361 | error[E0658]: intrinsics are subject to change
|
362 |
| - --> $DIR/feature-gate-abi.rs:73:11 |
| 362 | + --> $DIR/feature-gate-abi.rs:74:11 |
363 | 363 | |
|
364 | 364 | LL | type A1 = extern "rust-intrinsic" fn(); //~ ERROR intrinsics are subject to change
|
365 | 365 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
366 | 366 | |
|
367 | 367 | = help: add #![feature(intrinsics)] to the crate attributes to enable
|
368 | 368 |
|
369 | 369 | 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 |
371 | 371 | |
|
372 | 372 | LL | type A2 = extern "platform-intrinsic" fn(); //~ ERROR platform intrinsics are experimental
|
373 | 373 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
374 | 374 | |
|
375 | 375 | = help: add #![feature(platform_intrinsics)] to the crate attributes to enable
|
376 | 376 |
|
377 | 377 | 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 |
379 | 379 | |
|
380 | 380 | LL | type A3 = extern "vectorcall" fn(); //~ ERROR vectorcall is experimental and subject to change
|
381 | 381 | | ^^^^^^^^^^^^^^^^^^^^^^^^
|
382 | 382 | |
|
383 | 383 | = help: add #![feature(abi_vectorcall)] to the crate attributes to enable
|
384 | 384 |
|
385 | 385 | 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 |
387 | 387 | |
|
388 | 388 | LL | type A4 = extern "rust-call" fn(); //~ ERROR rust-call ABI is subject to change
|
389 | 389 | | ^^^^^^^^^^^^^^^^^^^^^^^
|
390 | 390 | |
|
391 | 391 | = help: add #![feature(unboxed_closures)] to the crate attributes to enable
|
392 | 392 |
|
393 | 393 | 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 |
395 | 395 | |
|
396 | 396 | LL | type A5 = extern "msp430-interrupt" fn(); //~ ERROR msp430-interrupt ABI is experimental
|
397 | 397 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
398 | 398 | |
|
399 | 399 | = help: add #![feature(abi_msp430_interrupt)] to the crate attributes to enable
|
400 | 400 |
|
401 | 401 | 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 |
403 | 403 | |
|
404 | 404 | LL | type A6 = extern "ptx-kernel" fn (); //~ ERROR PTX ABIs are experimental and subject to change
|
405 | 405 | | ^^^^^^^^^^^^^^^^^^^^^^^^^
|
406 | 406 | |
|
407 | 407 | = help: add #![feature(abi_ptx)] to the crate attributes to enable
|
408 | 408 |
|
409 | 409 | 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 |
411 | 411 | |
|
412 | 412 | LL | type A7 = extern "x86-interrupt" fn(); //~ ERROR x86-interrupt ABI is experimental
|
413 | 413 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
414 | 414 | |
|
415 | 415 | = help: add #![feature(abi_x86_interrupt)] to the crate attributes to enable
|
416 | 416 |
|
417 | 417 | 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 |
419 | 419 | |
|
420 | 420 | LL | type A8 = extern "thiscall" fn(); //~ ERROR thiscall is experimental and subject to change
|
421 | 421 | | ^^^^^^^^^^^^^^^^^^^^^^
|
422 | 422 | |
|
423 | 423 | = help: add #![feature(abi_thiscall)] to the crate attributes to enable
|
424 | 424 |
|
425 | 425 | 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 |
427 | 427 | |
|
428 | 428 | LL | type A9 = extern "amdgpu-kernel" fn(); //~ ERROR amdgpu-kernel ABI is experimental and subject to change
|
429 | 429 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
430 | 430 | |
|
431 | 431 | = help: add #![feature(abi_amdgpu_kernel)] to the crate attributes to enable
|
432 | 432 |
|
433 | 433 | error[E0658]: intrinsics are subject to change
|
434 |
| - --> $DIR/feature-gate-abi.rs:84:1 |
| 434 | + --> $DIR/feature-gate-abi.rs:85:1 |
435 | 435 | |
|
436 | 436 | LL | extern "rust-intrinsic" {} //~ ERROR intrinsics are subject to change
|
437 | 437 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
438 | 438 | |
|
439 | 439 | = help: add #![feature(intrinsics)] to the crate attributes to enable
|
440 | 440 |
|
441 | 441 | 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 |
443 | 443 | |
|
444 | 444 | LL | extern "platform-intrinsic" {} //~ ERROR platform intrinsics are experimental
|
445 | 445 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
446 | 446 | |
|
447 | 447 | = help: add #![feature(platform_intrinsics)] to the crate attributes to enable
|
448 | 448 |
|
449 | 449 | 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 |
451 | 451 | |
|
452 | 452 | LL | extern "vectorcall" {} //~ ERROR vectorcall is experimental and subject to change
|
453 | 453 | | ^^^^^^^^^^^^^^^^^^^^^^
|
454 | 454 | |
|
455 | 455 | = help: add #![feature(abi_vectorcall)] to the crate attributes to enable
|
456 | 456 |
|
457 | 457 | 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 |
459 | 459 | |
|
460 | 460 | LL | extern "rust-call" {} //~ ERROR rust-call ABI is subject to change
|
461 | 461 | | ^^^^^^^^^^^^^^^^^^^^^
|
462 | 462 | |
|
463 | 463 | = help: add #![feature(unboxed_closures)] to the crate attributes to enable
|
464 | 464 |
|
465 | 465 | 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 |
467 | 467 | |
|
468 | 468 | LL | extern "msp430-interrupt" {} //~ ERROR msp430-interrupt ABI is experimental
|
469 | 469 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
470 | 470 | |
|
471 | 471 | = help: add #![feature(abi_msp430_interrupt)] to the crate attributes to enable
|
472 | 472 |
|
473 | 473 | 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 |
475 | 475 | |
|
476 | 476 | LL | extern "ptx-kernel" {} //~ ERROR PTX ABIs are experimental and subject to change
|
477 | 477 | | ^^^^^^^^^^^^^^^^^^^^^^
|
478 | 478 | |
|
479 | 479 | = help: add #![feature(abi_ptx)] to the crate attributes to enable
|
480 | 480 |
|
481 | 481 | 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 |
483 | 483 | |
|
484 | 484 | LL | extern "x86-interrupt" {} //~ ERROR x86-interrupt ABI is experimental
|
485 | 485 | | ^^^^^^^^^^^^^^^^^^^^^^^^^
|
486 | 486 | |
|
487 | 487 | = help: add #![feature(abi_x86_interrupt)] to the crate attributes to enable
|
488 | 488 |
|
489 | 489 | 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 |
491 | 491 | |
|
492 | 492 | LL | extern "thiscall" {} //~ ERROR thiscall is experimental and subject to change
|
493 | 493 | | ^^^^^^^^^^^^^^^^^^^^
|
494 | 494 | |
|
495 | 495 | = help: add #![feature(abi_thiscall)] to the crate attributes to enable
|
496 | 496 |
|
497 | 497 | 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 |
499 | 499 | |
|
500 | 500 | LL | extern "amdgpu-kernel" {} //~ ERROR amdgpu-kernel ABI is experimental and subject to change
|
501 | 501 | | ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
0 commit comments