]> git.proxmox.com Git - rustc.git/blame - src/test/ui/feature-gates/feature-gate-abi.stderr
New upstream version 1.43.0+dfsg1
[rustc.git] / src / test / ui / feature-gates / feature-gate-abi.stderr
CommitLineData
2c00a5a8 1error[E0658]: intrinsics are subject to change
60c5eb7d 2 --> $DIR/feature-gate-abi.rs:13:8
ff7c6d11 3 |
532ac7d7 4LL | extern "rust-intrinsic" fn f1() {}
60c5eb7d 5 | ^^^^^^^^^^^^^^^^
ff7c6d11 6 |
416331ca 7 = help: add `#![feature(intrinsics)]` to the crate attributes to enable
ff7c6d11 8
48663c56 9error[E0658]: platform intrinsics are experimental and possibly buggy
60c5eb7d 10 --> $DIR/feature-gate-abi.rs:15:8
ff7c6d11 11 |
532ac7d7 12LL | extern "platform-intrinsic" fn f2() {}
60c5eb7d 13 | ^^^^^^^^^^^^^^^^^^^^
ff7c6d11 14 |
74b04a01 15 = note: see issue #27731 <https://github.com/rust-lang/rust/issues/27731> for more information
416331ca 16 = help: add `#![feature(platform_intrinsics)]` to the crate attributes to enable
ff7c6d11 17
2c00a5a8 18error[E0658]: vectorcall is experimental and subject to change
60c5eb7d 19 --> $DIR/feature-gate-abi.rs:17:8
ff7c6d11 20 |
532ac7d7 21LL | extern "vectorcall" fn f3() {}
60c5eb7d 22 | ^^^^^^^^^^^^
ff7c6d11 23 |
416331ca 24 = help: add `#![feature(abi_vectorcall)]` to the crate attributes to enable
ff7c6d11 25
48663c56 26error[E0658]: rust-call ABI is subject to change
60c5eb7d 27 --> $DIR/feature-gate-abi.rs:18:8
ff7c6d11 28 |
532ac7d7 29LL | extern "rust-call" fn f4() {}
60c5eb7d 30 | ^^^^^^^^^^^
ff7c6d11 31 |
74b04a01 32 = note: see issue #29625 <https://github.com/rust-lang/rust/issues/29625> for more information
416331ca 33 = help: add `#![feature(unboxed_closures)]` to the crate attributes to enable
ff7c6d11 34
48663c56 35error[E0658]: msp430-interrupt ABI is experimental and subject to change
60c5eb7d 36 --> $DIR/feature-gate-abi.rs:19:8
ff7c6d11 37 |
532ac7d7 38LL | extern "msp430-interrupt" fn f5() {}
60c5eb7d 39 | ^^^^^^^^^^^^^^^^^^
ff7c6d11 40 |
74b04a01 41 = note: see issue #38487 <https://github.com/rust-lang/rust/issues/38487> for more information
416331ca 42 = help: add `#![feature(abi_msp430_interrupt)]` to the crate attributes to enable
ff7c6d11 43
48663c56 44error[E0658]: PTX ABIs are experimental and subject to change
60c5eb7d 45 --> $DIR/feature-gate-abi.rs:20:8
ff7c6d11 46 |
532ac7d7 47LL | extern "ptx-kernel" fn f6() {}
60c5eb7d 48 | ^^^^^^^^^^^^
ff7c6d11 49 |
74b04a01 50 = note: see issue #38788 <https://github.com/rust-lang/rust/issues/38788> for more information
416331ca 51 = help: add `#![feature(abi_ptx)]` to the crate attributes to enable
ff7c6d11 52
48663c56 53error[E0658]: x86-interrupt ABI is experimental and subject to change
60c5eb7d 54 --> $DIR/feature-gate-abi.rs:21:8
ff7c6d11 55 |
532ac7d7 56LL | extern "x86-interrupt" fn f7() {}
60c5eb7d 57 | ^^^^^^^^^^^^^^^
ff7c6d11 58 |
74b04a01 59 = note: see issue #40180 <https://github.com/rust-lang/rust/issues/40180> for more information
416331ca 60 = help: add `#![feature(abi_x86_interrupt)]` to the crate attributes to enable
ff7c6d11 61
2c00a5a8 62error[E0658]: thiscall is experimental and subject to change
60c5eb7d 63 --> $DIR/feature-gate-abi.rs:22:8
ff7c6d11 64 |
532ac7d7 65LL | extern "thiscall" fn f8() {}
60c5eb7d 66 | ^^^^^^^^^^
ff7c6d11 67 |
416331ca 68 = help: add `#![feature(abi_thiscall)]` to the crate attributes to enable
ff7c6d11 69
48663c56 70error[E0658]: amdgpu-kernel ABI is experimental and subject to change
60c5eb7d 71 --> $DIR/feature-gate-abi.rs:23:8
8faf50e0 72 |
532ac7d7 73LL | extern "amdgpu-kernel" fn f9() {}
60c5eb7d 74 | ^^^^^^^^^^^^^^^
8faf50e0 75 |
74b04a01 76 = note: see issue #51575 <https://github.com/rust-lang/rust/issues/51575> for more information
416331ca 77 = help: add `#![feature(abi_amdgpu_kernel)]` to the crate attributes to enable
8faf50e0 78
e74abb32 79error[E0658]: efiapi ABI is experimental and subject to change
60c5eb7d 80 --> $DIR/feature-gate-abi.rs:24:8
e74abb32
XL
81 |
82LL | extern "efiapi" fn f10() {}
60c5eb7d 83 | ^^^^^^^^
e74abb32 84 |
74b04a01 85 = note: see issue #65815 <https://github.com/rust-lang/rust/issues/65815> for more information
e74abb32
XL
86 = help: add `#![feature(abi_efiapi)]` to the crate attributes to enable
87
2c00a5a8 88error[E0658]: intrinsics are subject to change
60c5eb7d 89 --> $DIR/feature-gate-abi.rs:28:12
ff7c6d11 90 |
532ac7d7 91LL | extern "rust-intrinsic" fn m1();
60c5eb7d 92 | ^^^^^^^^^^^^^^^^
ff7c6d11 93 |
416331ca 94 = help: add `#![feature(intrinsics)]` to the crate attributes to enable
ff7c6d11 95
48663c56 96error[E0658]: platform intrinsics are experimental and possibly buggy
60c5eb7d 97 --> $DIR/feature-gate-abi.rs:30:12
ff7c6d11 98 |
532ac7d7 99LL | extern "platform-intrinsic" fn m2();
60c5eb7d 100 | ^^^^^^^^^^^^^^^^^^^^
ff7c6d11 101 |
74b04a01 102 = note: see issue #27731 <https://github.com/rust-lang/rust/issues/27731> for more information
416331ca 103 = help: add `#![feature(platform_intrinsics)]` to the crate attributes to enable
ff7c6d11 104
2c00a5a8 105error[E0658]: vectorcall is experimental and subject to change
60c5eb7d 106 --> $DIR/feature-gate-abi.rs:32:12
ff7c6d11 107 |
532ac7d7 108LL | extern "vectorcall" fn m3();
60c5eb7d 109 | ^^^^^^^^^^^^
ff7c6d11 110 |
416331ca 111 = help: add `#![feature(abi_vectorcall)]` to the crate attributes to enable
ff7c6d11 112
48663c56 113error[E0658]: rust-call ABI is subject to change
60c5eb7d 114 --> $DIR/feature-gate-abi.rs:33:12
ff7c6d11 115 |
532ac7d7 116LL | extern "rust-call" fn m4();
60c5eb7d 117 | ^^^^^^^^^^^
ff7c6d11 118 |
74b04a01 119 = note: see issue #29625 <https://github.com/rust-lang/rust/issues/29625> for more information
416331ca 120 = help: add `#![feature(unboxed_closures)]` to the crate attributes to enable
ff7c6d11 121
48663c56 122error[E0658]: msp430-interrupt ABI is experimental and subject to change
60c5eb7d 123 --> $DIR/feature-gate-abi.rs:34:12
ff7c6d11 124 |
532ac7d7 125LL | extern "msp430-interrupt" fn m5();
60c5eb7d 126 | ^^^^^^^^^^^^^^^^^^
ff7c6d11 127 |
74b04a01 128 = note: see issue #38487 <https://github.com/rust-lang/rust/issues/38487> for more information
416331ca 129 = help: add `#![feature(abi_msp430_interrupt)]` to the crate attributes to enable
ff7c6d11 130
48663c56 131error[E0658]: PTX ABIs are experimental and subject to change
60c5eb7d 132 --> $DIR/feature-gate-abi.rs:35:12
ff7c6d11 133 |
532ac7d7 134LL | extern "ptx-kernel" fn m6();
60c5eb7d 135 | ^^^^^^^^^^^^
ff7c6d11 136 |
74b04a01 137 = note: see issue #38788 <https://github.com/rust-lang/rust/issues/38788> for more information
416331ca 138 = help: add `#![feature(abi_ptx)]` to the crate attributes to enable
ff7c6d11 139
48663c56 140error[E0658]: x86-interrupt ABI is experimental and subject to change
60c5eb7d 141 --> $DIR/feature-gate-abi.rs:36:12
ff7c6d11 142 |
532ac7d7 143LL | extern "x86-interrupt" fn m7();
60c5eb7d 144 | ^^^^^^^^^^^^^^^
ff7c6d11 145 |
74b04a01 146 = note: see issue #40180 <https://github.com/rust-lang/rust/issues/40180> for more information
416331ca 147 = help: add `#![feature(abi_x86_interrupt)]` to the crate attributes to enable
ff7c6d11 148
2c00a5a8 149error[E0658]: thiscall is experimental and subject to change
60c5eb7d 150 --> $DIR/feature-gate-abi.rs:37:12
ff7c6d11 151 |
532ac7d7 152LL | extern "thiscall" fn m8();
60c5eb7d 153 | ^^^^^^^^^^
ff7c6d11 154 |
416331ca 155 = help: add `#![feature(abi_thiscall)]` to the crate attributes to enable
ff7c6d11 156
48663c56 157error[E0658]: amdgpu-kernel ABI is experimental and subject to change
60c5eb7d 158 --> $DIR/feature-gate-abi.rs:38:12
8faf50e0 159 |
532ac7d7 160LL | extern "amdgpu-kernel" fn m9();
60c5eb7d 161 | ^^^^^^^^^^^^^^^
8faf50e0 162 |
74b04a01 163 = note: see issue #51575 <https://github.com/rust-lang/rust/issues/51575> for more information
416331ca 164 = help: add `#![feature(abi_amdgpu_kernel)]` to the crate attributes to enable
8faf50e0 165
e74abb32 166error[E0658]: efiapi ABI is experimental and subject to change
60c5eb7d 167 --> $DIR/feature-gate-abi.rs:39:12
e74abb32
XL
168 |
169LL | extern "efiapi" fn m10();
60c5eb7d 170 | ^^^^^^^^
e74abb32 171 |
74b04a01 172 = note: see issue #65815 <https://github.com/rust-lang/rust/issues/65815> for more information
e74abb32
XL
173 = help: add `#![feature(abi_efiapi)]` to the crate attributes to enable
174
2c00a5a8 175error[E0658]: vectorcall is experimental and subject to change
60c5eb7d 176 --> $DIR/feature-gate-abi.rs:41:12
ff7c6d11 177 |
532ac7d7 178LL | extern "vectorcall" fn dm3() {}
60c5eb7d 179 | ^^^^^^^^^^^^
ff7c6d11 180 |
416331ca 181 = help: add `#![feature(abi_vectorcall)]` to the crate attributes to enable
ff7c6d11 182
48663c56 183error[E0658]: rust-call ABI is subject to change
60c5eb7d 184 --> $DIR/feature-gate-abi.rs:42:12
ff7c6d11 185 |
532ac7d7 186LL | extern "rust-call" fn dm4() {}
60c5eb7d 187 | ^^^^^^^^^^^
ff7c6d11 188 |
74b04a01 189 = note: see issue #29625 <https://github.com/rust-lang/rust/issues/29625> for more information
416331ca 190 = help: add `#![feature(unboxed_closures)]` to the crate attributes to enable
ff7c6d11 191
48663c56 192error[E0658]: msp430-interrupt ABI is experimental and subject to change
60c5eb7d 193 --> $DIR/feature-gate-abi.rs:43:12
ff7c6d11 194 |
532ac7d7 195LL | extern "msp430-interrupt" fn dm5() {}
60c5eb7d 196 | ^^^^^^^^^^^^^^^^^^
ff7c6d11 197 |
74b04a01 198 = note: see issue #38487 <https://github.com/rust-lang/rust/issues/38487> for more information
416331ca 199 = help: add `#![feature(abi_msp430_interrupt)]` to the crate attributes to enable
ff7c6d11 200
48663c56 201error[E0658]: PTX ABIs are experimental and subject to change
60c5eb7d 202 --> $DIR/feature-gate-abi.rs:44:12
ff7c6d11 203 |
532ac7d7 204LL | extern "ptx-kernel" fn dm6() {}
60c5eb7d 205 | ^^^^^^^^^^^^
ff7c6d11 206 |
74b04a01 207 = note: see issue #38788 <https://github.com/rust-lang/rust/issues/38788> for more information
416331ca 208 = help: add `#![feature(abi_ptx)]` to the crate attributes to enable
ff7c6d11 209
48663c56 210error[E0658]: x86-interrupt ABI is experimental and subject to change
60c5eb7d 211 --> $DIR/feature-gate-abi.rs:45:12
ff7c6d11 212 |
532ac7d7 213LL | extern "x86-interrupt" fn dm7() {}
60c5eb7d 214 | ^^^^^^^^^^^^^^^
ff7c6d11 215 |
74b04a01 216 = note: see issue #40180 <https://github.com/rust-lang/rust/issues/40180> for more information
416331ca 217 = help: add `#![feature(abi_x86_interrupt)]` to the crate attributes to enable
ff7c6d11 218
2c00a5a8 219error[E0658]: thiscall is experimental and subject to change
60c5eb7d 220 --> $DIR/feature-gate-abi.rs:46:12
ff7c6d11 221 |
532ac7d7 222LL | extern "thiscall" fn dm8() {}
60c5eb7d 223 | ^^^^^^^^^^
ff7c6d11 224 |
416331ca 225 = help: add `#![feature(abi_thiscall)]` to the crate attributes to enable
ff7c6d11 226
48663c56 227error[E0658]: amdgpu-kernel ABI is experimental and subject to change
60c5eb7d 228 --> $DIR/feature-gate-abi.rs:47:12
8faf50e0 229 |
532ac7d7 230LL | extern "amdgpu-kernel" fn dm9() {}
60c5eb7d 231 | ^^^^^^^^^^^^^^^
8faf50e0 232 |
74b04a01 233 = note: see issue #51575 <https://github.com/rust-lang/rust/issues/51575> for more information
416331ca 234 = help: add `#![feature(abi_amdgpu_kernel)]` to the crate attributes to enable
8faf50e0 235
e74abb32 236error[E0658]: efiapi ABI is experimental and subject to change
60c5eb7d 237 --> $DIR/feature-gate-abi.rs:48:12
e74abb32
XL
238 |
239LL | extern "efiapi" fn dm10() {}
60c5eb7d 240 | ^^^^^^^^
e74abb32 241 |
74b04a01 242 = note: see issue #65815 <https://github.com/rust-lang/rust/issues/65815> for more information
e74abb32
XL
243 = help: add `#![feature(abi_efiapi)]` to the crate attributes to enable
244
2c00a5a8 245error[E0658]: intrinsics are subject to change
60c5eb7d 246 --> $DIR/feature-gate-abi.rs:55:12
ff7c6d11 247 |
532ac7d7 248LL | extern "rust-intrinsic" fn m1() {}
60c5eb7d 249 | ^^^^^^^^^^^^^^^^
ff7c6d11 250 |
416331ca 251 = help: add `#![feature(intrinsics)]` to the crate attributes to enable
ff7c6d11 252
48663c56 253error[E0658]: platform intrinsics are experimental and possibly buggy
60c5eb7d 254 --> $DIR/feature-gate-abi.rs:57:12
ff7c6d11 255 |
532ac7d7 256LL | extern "platform-intrinsic" fn m2() {}
60c5eb7d 257 | ^^^^^^^^^^^^^^^^^^^^
ff7c6d11 258 |
74b04a01 259 = note: see issue #27731 <https://github.com/rust-lang/rust/issues/27731> for more information
416331ca 260 = help: add `#![feature(platform_intrinsics)]` to the crate attributes to enable
ff7c6d11 261
2c00a5a8 262error[E0658]: vectorcall is experimental and subject to change
60c5eb7d 263 --> $DIR/feature-gate-abi.rs:59:12
ff7c6d11 264 |
532ac7d7 265LL | extern "vectorcall" fn m3() {}
60c5eb7d 266 | ^^^^^^^^^^^^
ff7c6d11 267 |
416331ca 268 = help: add `#![feature(abi_vectorcall)]` to the crate attributes to enable
ff7c6d11 269
48663c56 270error[E0658]: rust-call ABI is subject to change
60c5eb7d 271 --> $DIR/feature-gate-abi.rs:60:12
ff7c6d11 272 |
532ac7d7 273LL | extern "rust-call" fn m4() {}
60c5eb7d 274 | ^^^^^^^^^^^
ff7c6d11 275 |
74b04a01 276 = note: see issue #29625 <https://github.com/rust-lang/rust/issues/29625> for more information
416331ca 277 = help: add `#![feature(unboxed_closures)]` to the crate attributes to enable
ff7c6d11 278
48663c56 279error[E0658]: msp430-interrupt ABI is experimental and subject to change
60c5eb7d 280 --> $DIR/feature-gate-abi.rs:61:12
ff7c6d11 281 |
532ac7d7 282LL | extern "msp430-interrupt" fn m5() {}
60c5eb7d 283 | ^^^^^^^^^^^^^^^^^^
ff7c6d11 284 |
74b04a01 285 = note: see issue #38487 <https://github.com/rust-lang/rust/issues/38487> for more information
416331ca 286 = help: add `#![feature(abi_msp430_interrupt)]` to the crate attributes to enable
ff7c6d11 287
48663c56 288error[E0658]: PTX ABIs are experimental and subject to change
60c5eb7d 289 --> $DIR/feature-gate-abi.rs:62:12
ff7c6d11 290 |
532ac7d7 291LL | extern "ptx-kernel" fn m6() {}
60c5eb7d 292 | ^^^^^^^^^^^^
ff7c6d11 293 |
74b04a01 294 = note: see issue #38788 <https://github.com/rust-lang/rust/issues/38788> for more information
416331ca 295 = help: add `#![feature(abi_ptx)]` to the crate attributes to enable
ff7c6d11 296
48663c56 297error[E0658]: x86-interrupt ABI is experimental and subject to change
60c5eb7d 298 --> $DIR/feature-gate-abi.rs:63:12
ff7c6d11 299 |
532ac7d7 300LL | extern "x86-interrupt" fn m7() {}
60c5eb7d 301 | ^^^^^^^^^^^^^^^
ff7c6d11 302 |
74b04a01 303 = note: see issue #40180 <https://github.com/rust-lang/rust/issues/40180> for more information
416331ca 304 = help: add `#![feature(abi_x86_interrupt)]` to the crate attributes to enable
ff7c6d11 305
2c00a5a8 306error[E0658]: thiscall is experimental and subject to change
60c5eb7d 307 --> $DIR/feature-gate-abi.rs:64:12
ff7c6d11 308 |
532ac7d7 309LL | extern "thiscall" fn m8() {}
60c5eb7d 310 | ^^^^^^^^^^
ff7c6d11 311 |
416331ca 312 = help: add `#![feature(abi_thiscall)]` to the crate attributes to enable
ff7c6d11 313
48663c56 314error[E0658]: amdgpu-kernel ABI is experimental and subject to change
60c5eb7d 315 --> $DIR/feature-gate-abi.rs:65:12
ff7c6d11 316 |
532ac7d7 317LL | extern "amdgpu-kernel" fn m9() {}
60c5eb7d 318 | ^^^^^^^^^^^^^^^
8faf50e0 319 |
74b04a01 320 = note: see issue #51575 <https://github.com/rust-lang/rust/issues/51575> for more information
416331ca 321 = help: add `#![feature(abi_amdgpu_kernel)]` to the crate attributes to enable
8faf50e0 322
e74abb32 323error[E0658]: efiapi ABI is experimental and subject to change
60c5eb7d 324 --> $DIR/feature-gate-abi.rs:66:12
8faf50e0 325 |
e74abb32 326LL | extern "efiapi" fn m10() {}
60c5eb7d 327 | ^^^^^^^^
e74abb32 328 |
74b04a01 329 = note: see issue #65815 <https://github.com/rust-lang/rust/issues/65815> for more information
e74abb32
XL
330 = help: add `#![feature(abi_efiapi)]` to the crate attributes to enable
331
332error[E0658]: intrinsics are subject to change
60c5eb7d 333 --> $DIR/feature-gate-abi.rs:71:12
e74abb32 334 |
532ac7d7 335LL | extern "rust-intrinsic" fn im1() {}
60c5eb7d 336 | ^^^^^^^^^^^^^^^^
ff7c6d11 337 |
416331ca 338 = help: add `#![feature(intrinsics)]` to the crate attributes to enable
ff7c6d11 339
48663c56 340error[E0658]: platform intrinsics are experimental and possibly buggy
60c5eb7d 341 --> $DIR/feature-gate-abi.rs:73:12
ff7c6d11 342 |
532ac7d7 343LL | extern "platform-intrinsic" fn im2() {}
60c5eb7d 344 | ^^^^^^^^^^^^^^^^^^^^
ff7c6d11 345 |
74b04a01 346 = note: see issue #27731 <https://github.com/rust-lang/rust/issues/27731> for more information
416331ca 347 = help: add `#![feature(platform_intrinsics)]` to the crate attributes to enable
ff7c6d11 348
2c00a5a8 349error[E0658]: vectorcall is experimental and subject to change
60c5eb7d 350 --> $DIR/feature-gate-abi.rs:75:12
ff7c6d11 351 |
532ac7d7 352LL | extern "vectorcall" fn im3() {}
60c5eb7d 353 | ^^^^^^^^^^^^
ff7c6d11 354 |
416331ca 355 = help: add `#![feature(abi_vectorcall)]` to the crate attributes to enable
ff7c6d11 356
48663c56 357error[E0658]: rust-call ABI is subject to change
60c5eb7d 358 --> $DIR/feature-gate-abi.rs:76:12
ff7c6d11 359 |
532ac7d7 360LL | extern "rust-call" fn im4() {}
60c5eb7d 361 | ^^^^^^^^^^^
ff7c6d11 362 |
74b04a01 363 = note: see issue #29625 <https://github.com/rust-lang/rust/issues/29625> for more information
416331ca 364 = help: add `#![feature(unboxed_closures)]` to the crate attributes to enable
ff7c6d11 365
48663c56 366error[E0658]: msp430-interrupt ABI is experimental and subject to change
60c5eb7d 367 --> $DIR/feature-gate-abi.rs:77:12
ff7c6d11 368 |
532ac7d7 369LL | extern "msp430-interrupt" fn im5() {}
60c5eb7d 370 | ^^^^^^^^^^^^^^^^^^
ff7c6d11 371 |
74b04a01 372 = note: see issue #38487 <https://github.com/rust-lang/rust/issues/38487> for more information
416331ca 373 = help: add `#![feature(abi_msp430_interrupt)]` to the crate attributes to enable
ff7c6d11 374
48663c56 375error[E0658]: PTX ABIs are experimental and subject to change
60c5eb7d 376 --> $DIR/feature-gate-abi.rs:78:12
ff7c6d11 377 |
532ac7d7 378LL | extern "ptx-kernel" fn im6() {}
60c5eb7d 379 | ^^^^^^^^^^^^
ff7c6d11 380 |
74b04a01 381 = note: see issue #38788 <https://github.com/rust-lang/rust/issues/38788> for more information
416331ca 382 = help: add `#![feature(abi_ptx)]` to the crate attributes to enable
ff7c6d11 383
48663c56 384error[E0658]: x86-interrupt ABI is experimental and subject to change
60c5eb7d 385 --> $DIR/feature-gate-abi.rs:79:12
ff7c6d11 386 |
532ac7d7 387LL | extern "x86-interrupt" fn im7() {}
60c5eb7d 388 | ^^^^^^^^^^^^^^^
ff7c6d11 389 |
74b04a01 390 = note: see issue #40180 <https://github.com/rust-lang/rust/issues/40180> for more information
416331ca 391 = help: add `#![feature(abi_x86_interrupt)]` to the crate attributes to enable
ff7c6d11 392
2c00a5a8 393error[E0658]: thiscall is experimental and subject to change
60c5eb7d 394 --> $DIR/feature-gate-abi.rs:80:12
ff7c6d11 395 |
532ac7d7 396LL | extern "thiscall" fn im8() {}
60c5eb7d 397 | ^^^^^^^^^^
ff7c6d11 398 |
416331ca 399 = help: add `#![feature(abi_thiscall)]` to the crate attributes to enable
ff7c6d11 400
48663c56 401error[E0658]: amdgpu-kernel ABI is experimental and subject to change
60c5eb7d 402 --> $DIR/feature-gate-abi.rs:81:12
8faf50e0 403 |
532ac7d7 404LL | extern "amdgpu-kernel" fn im9() {}
60c5eb7d 405 | ^^^^^^^^^^^^^^^
8faf50e0 406 |
74b04a01 407 = note: see issue #51575 <https://github.com/rust-lang/rust/issues/51575> for more information
416331ca 408 = help: add `#![feature(abi_amdgpu_kernel)]` to the crate attributes to enable
8faf50e0 409
e74abb32 410error[E0658]: efiapi ABI is experimental and subject to change
60c5eb7d 411 --> $DIR/feature-gate-abi.rs:82:12
e74abb32
XL
412 |
413LL | extern "efiapi" fn im10() {}
60c5eb7d 414 | ^^^^^^^^
e74abb32 415 |
74b04a01 416 = note: see issue #65815 <https://github.com/rust-lang/rust/issues/65815> for more information
e74abb32
XL
417 = help: add `#![feature(abi_efiapi)]` to the crate attributes to enable
418
2c00a5a8 419error[E0658]: intrinsics are subject to change
60c5eb7d 420 --> $DIR/feature-gate-abi.rs:86:18
ff7c6d11 421 |
532ac7d7 422LL | type A1 = extern "rust-intrinsic" fn();
60c5eb7d 423 | ^^^^^^^^^^^^^^^^
ff7c6d11 424 |
416331ca 425 = help: add `#![feature(intrinsics)]` to the crate attributes to enable
ff7c6d11 426
48663c56 427error[E0658]: platform intrinsics are experimental and possibly buggy
60c5eb7d 428 --> $DIR/feature-gate-abi.rs:87:18
ff7c6d11 429 |
532ac7d7 430LL | type A2 = extern "platform-intrinsic" fn();
60c5eb7d 431 | ^^^^^^^^^^^^^^^^^^^^
ff7c6d11 432 |
74b04a01 433 = note: see issue #27731 <https://github.com/rust-lang/rust/issues/27731> for more information
416331ca 434 = help: add `#![feature(platform_intrinsics)]` to the crate attributes to enable
ff7c6d11 435
2c00a5a8 436error[E0658]: vectorcall is experimental and subject to change
60c5eb7d 437 --> $DIR/feature-gate-abi.rs:88:18
ff7c6d11 438 |
532ac7d7 439LL | type A3 = extern "vectorcall" fn();
60c5eb7d 440 | ^^^^^^^^^^^^
ff7c6d11 441 |
416331ca 442 = help: add `#![feature(abi_vectorcall)]` to the crate attributes to enable
ff7c6d11 443
48663c56 444error[E0658]: rust-call ABI is subject to change
60c5eb7d 445 --> $DIR/feature-gate-abi.rs:89:18
ff7c6d11 446 |
532ac7d7 447LL | type A4 = extern "rust-call" fn();
60c5eb7d 448 | ^^^^^^^^^^^
ff7c6d11 449 |
74b04a01 450 = note: see issue #29625 <https://github.com/rust-lang/rust/issues/29625> for more information
416331ca 451 = help: add `#![feature(unboxed_closures)]` to the crate attributes to enable
ff7c6d11 452
48663c56 453error[E0658]: msp430-interrupt ABI is experimental and subject to change
60c5eb7d 454 --> $DIR/feature-gate-abi.rs:90:18
ff7c6d11 455 |
532ac7d7 456LL | type A5 = extern "msp430-interrupt" fn();
60c5eb7d 457 | ^^^^^^^^^^^^^^^^^^
ff7c6d11 458 |
74b04a01 459 = note: see issue #38487 <https://github.com/rust-lang/rust/issues/38487> for more information
416331ca 460 = help: add `#![feature(abi_msp430_interrupt)]` to the crate attributes to enable
ff7c6d11 461
48663c56 462error[E0658]: PTX ABIs are experimental and subject to change
60c5eb7d 463 --> $DIR/feature-gate-abi.rs:91:18
ff7c6d11 464 |
532ac7d7 465LL | type A6 = extern "ptx-kernel" fn ();
60c5eb7d 466 | ^^^^^^^^^^^^
ff7c6d11 467 |
74b04a01 468 = note: see issue #38788 <https://github.com/rust-lang/rust/issues/38788> for more information
416331ca 469 = help: add `#![feature(abi_ptx)]` to the crate attributes to enable
ff7c6d11 470
48663c56 471error[E0658]: x86-interrupt ABI is experimental and subject to change
60c5eb7d 472 --> $DIR/feature-gate-abi.rs:92:18
ff7c6d11 473 |
532ac7d7 474LL | type A7 = extern "x86-interrupt" fn();
60c5eb7d 475 | ^^^^^^^^^^^^^^^
ff7c6d11 476 |
74b04a01 477 = note: see issue #40180 <https://github.com/rust-lang/rust/issues/40180> for more information
416331ca 478 = help: add `#![feature(abi_x86_interrupt)]` to the crate attributes to enable
ff7c6d11 479
2c00a5a8 480error[E0658]: thiscall is experimental and subject to change
60c5eb7d 481 --> $DIR/feature-gate-abi.rs:93:18
ff7c6d11 482 |
532ac7d7 483LL | type A8 = extern "thiscall" fn();
60c5eb7d 484 | ^^^^^^^^^^
ff7c6d11 485 |
416331ca 486 = help: add `#![feature(abi_thiscall)]` to the crate attributes to enable
ff7c6d11 487
48663c56 488error[E0658]: amdgpu-kernel ABI is experimental and subject to change
60c5eb7d 489 --> $DIR/feature-gate-abi.rs:94:18
8faf50e0 490 |
532ac7d7 491LL | type A9 = extern "amdgpu-kernel" fn();
60c5eb7d 492 | ^^^^^^^^^^^^^^^
8faf50e0 493 |
74b04a01 494 = note: see issue #51575 <https://github.com/rust-lang/rust/issues/51575> for more information
416331ca 495 = help: add `#![feature(abi_amdgpu_kernel)]` to the crate attributes to enable
8faf50e0 496
e74abb32 497error[E0658]: efiapi ABI is experimental and subject to change
60c5eb7d 498 --> $DIR/feature-gate-abi.rs:95:19
e74abb32
XL
499 |
500LL | type A10 = extern "efiapi" fn();
60c5eb7d 501 | ^^^^^^^^
e74abb32 502 |
74b04a01 503 = note: see issue #65815 <https://github.com/rust-lang/rust/issues/65815> for more information
e74abb32
XL
504 = help: add `#![feature(abi_efiapi)]` to the crate attributes to enable
505
2c00a5a8 506error[E0658]: intrinsics are subject to change
60c5eb7d 507 --> $DIR/feature-gate-abi.rs:98:8
ff7c6d11 508 |
532ac7d7 509LL | extern "rust-intrinsic" {}
60c5eb7d 510 | ^^^^^^^^^^^^^^^^
ff7c6d11 511 |
416331ca 512 = help: add `#![feature(intrinsics)]` to the crate attributes to enable
ff7c6d11 513
48663c56 514error[E0658]: platform intrinsics are experimental and possibly buggy
60c5eb7d 515 --> $DIR/feature-gate-abi.rs:99:8
ff7c6d11 516 |
532ac7d7 517LL | extern "platform-intrinsic" {}
60c5eb7d 518 | ^^^^^^^^^^^^^^^^^^^^
ff7c6d11 519 |
74b04a01 520 = note: see issue #27731 <https://github.com/rust-lang/rust/issues/27731> for more information
416331ca 521 = help: add `#![feature(platform_intrinsics)]` to the crate attributes to enable
ff7c6d11 522
2c00a5a8 523error[E0658]: vectorcall is experimental and subject to change
60c5eb7d 524 --> $DIR/feature-gate-abi.rs:100:8
ff7c6d11 525 |
532ac7d7 526LL | extern "vectorcall" {}
60c5eb7d 527 | ^^^^^^^^^^^^
ff7c6d11 528 |
416331ca 529 = help: add `#![feature(abi_vectorcall)]` to the crate attributes to enable
ff7c6d11 530
48663c56 531error[E0658]: rust-call ABI is subject to change
60c5eb7d 532 --> $DIR/feature-gate-abi.rs:101:8
ff7c6d11 533 |
532ac7d7 534LL | extern "rust-call" {}
60c5eb7d 535 | ^^^^^^^^^^^
ff7c6d11 536 |
74b04a01 537 = note: see issue #29625 <https://github.com/rust-lang/rust/issues/29625> for more information
416331ca 538 = help: add `#![feature(unboxed_closures)]` to the crate attributes to enable
ff7c6d11 539
48663c56 540error[E0658]: msp430-interrupt ABI is experimental and subject to change
60c5eb7d 541 --> $DIR/feature-gate-abi.rs:102:8
ff7c6d11 542 |
532ac7d7 543LL | extern "msp430-interrupt" {}
60c5eb7d 544 | ^^^^^^^^^^^^^^^^^^
ff7c6d11 545 |
74b04a01 546 = note: see issue #38487 <https://github.com/rust-lang/rust/issues/38487> for more information
416331ca 547 = help: add `#![feature(abi_msp430_interrupt)]` to the crate attributes to enable
ff7c6d11 548
48663c56 549error[E0658]: PTX ABIs are experimental and subject to change
60c5eb7d 550 --> $DIR/feature-gate-abi.rs:103:8
ff7c6d11 551 |
532ac7d7 552LL | extern "ptx-kernel" {}
60c5eb7d 553 | ^^^^^^^^^^^^
ff7c6d11 554 |
74b04a01 555 = note: see issue #38788 <https://github.com/rust-lang/rust/issues/38788> for more information
416331ca 556 = help: add `#![feature(abi_ptx)]` to the crate attributes to enable
ff7c6d11 557
48663c56 558error[E0658]: x86-interrupt ABI is experimental and subject to change
60c5eb7d 559 --> $DIR/feature-gate-abi.rs:104:8
ff7c6d11 560 |
532ac7d7 561LL | extern "x86-interrupt" {}
60c5eb7d 562 | ^^^^^^^^^^^^^^^
ff7c6d11 563 |
74b04a01 564 = note: see issue #40180 <https://github.com/rust-lang/rust/issues/40180> for more information
416331ca 565 = help: add `#![feature(abi_x86_interrupt)]` to the crate attributes to enable
ff7c6d11 566
2c00a5a8 567error[E0658]: thiscall is experimental and subject to change
60c5eb7d 568 --> $DIR/feature-gate-abi.rs:105:8
ff7c6d11 569 |
532ac7d7 570LL | extern "thiscall" {}
60c5eb7d 571 | ^^^^^^^^^^
ff7c6d11 572 |
416331ca 573 = help: add `#![feature(abi_thiscall)]` to the crate attributes to enable
ff7c6d11 574
48663c56 575error[E0658]: amdgpu-kernel ABI is experimental and subject to change
60c5eb7d 576 --> $DIR/feature-gate-abi.rs:106:8
8faf50e0 577 |
532ac7d7 578LL | extern "amdgpu-kernel" {}
60c5eb7d 579 | ^^^^^^^^^^^^^^^
8faf50e0 580 |
74b04a01 581 = note: see issue #51575 <https://github.com/rust-lang/rust/issues/51575> for more information
416331ca 582 = help: add `#![feature(abi_amdgpu_kernel)]` to the crate attributes to enable
8faf50e0 583
e74abb32 584error[E0658]: efiapi ABI is experimental and subject to change
60c5eb7d 585 --> $DIR/feature-gate-abi.rs:107:8
e74abb32
XL
586 |
587LL | extern "efiapi" {}
60c5eb7d 588 | ^^^^^^^^
e74abb32 589 |
74b04a01 590 = note: see issue #65815 <https://github.com/rust-lang/rust/issues/65815> for more information
e74abb32
XL
591 = help: add `#![feature(abi_efiapi)]` to the crate attributes to enable
592
e1599b0c 593error: intrinsic must be in `extern "rust-intrinsic" { ... }` block
e74abb32 594 --> $DIR/feature-gate-abi.rs:28:32
e1599b0c
XL
595 |
596LL | extern "rust-intrinsic" fn m1();
597 | ^^
598
599error: intrinsic must be in `extern "rust-intrinsic" { ... }` block
e74abb32 600 --> $DIR/feature-gate-abi.rs:30:36
e1599b0c
XL
601 |
602LL | extern "platform-intrinsic" fn m2();
603 | ^^
604
605error: intrinsic must be in `extern "rust-intrinsic" { ... }` block
e74abb32 606 --> $DIR/feature-gate-abi.rs:13:33
e1599b0c
XL
607 |
608LL | extern "rust-intrinsic" fn f1() {}
609 | ^^
610
611error: intrinsic must be in `extern "rust-intrinsic" { ... }` block
e74abb32 612 --> $DIR/feature-gate-abi.rs:15:37
e1599b0c
XL
613 |
614LL | extern "platform-intrinsic" fn f2() {}
615 | ^^
616
617error: intrinsic must be in `extern "rust-intrinsic" { ... }` block
e74abb32 618 --> $DIR/feature-gate-abi.rs:55:37
e1599b0c
XL
619 |
620LL | extern "rust-intrinsic" fn m1() {}
621 | ^^
622
623error: intrinsic must be in `extern "rust-intrinsic" { ... }` block
e74abb32 624 --> $DIR/feature-gate-abi.rs:57:41
e1599b0c
XL
625 |
626LL | extern "platform-intrinsic" fn m2() {}
627 | ^^
628
629error: intrinsic must be in `extern "rust-intrinsic" { ... }` block
e74abb32 630 --> $DIR/feature-gate-abi.rs:71:38
e1599b0c
XL
631 |
632LL | extern "rust-intrinsic" fn im1() {}
633 | ^^
634
635error: intrinsic must be in `extern "rust-intrinsic" { ... }` block
e74abb32 636 --> $DIR/feature-gate-abi.rs:73:42
e1599b0c
XL
637 |
638LL | extern "platform-intrinsic" fn im2() {}
639 | ^^
640
e74abb32 641error: aborting due to 76 previous errors
ff7c6d11 642
0531ce1d 643For more information about this error, try `rustc --explain E0658`.