2018-01-13 13:05:51 +00:00
|
|
|
error[E0658]: intrinsics are subject to change
|
2022-11-05 18:26:54 +00:00
|
|
|
--> $DIR/feature-gate-abi.rs:15:8
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | extern "rust-intrinsic" fn f1() {}
|
2019-10-27 22:14:35 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2019-07-09 09:32:08 +00:00
|
|
|
= help: add `#![feature(intrinsics)]` to the crate attributes to enable
|
2017-12-06 08:27:47 +00:00
|
|
|
|
2019-04-10 23:40:12 +00:00
|
|
|
error[E0658]: platform intrinsics are experimental and possibly buggy
|
2022-11-05 18:26:54 +00:00
|
|
|
--> $DIR/feature-gate-abi.rs:17:8
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | extern "platform-intrinsic" fn f2() {}
|
2019-10-27 22:14:35 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2020-02-07 12:07:02 +00:00
|
|
|
= note: see issue #27731 <https://github.com/rust-lang/rust/issues/27731> for more information
|
2019-07-09 09:32:08 +00:00
|
|
|
= help: add `#![feature(platform_intrinsics)]` to the crate attributes to enable
|
2017-12-06 08:27:47 +00:00
|
|
|
|
2019-04-10 23:40:12 +00:00
|
|
|
error[E0658]: rust-call ABI is subject to change
|
2022-11-05 18:26:54 +00:00
|
|
|
--> $DIR/feature-gate-abi.rs:19:8
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2020-11-11 23:15:39 +00:00
|
|
|
LL | extern "rust-call" fn f4(_: ()) {}
|
2019-10-27 22:14:35 +00:00
|
|
|
| ^^^^^^^^^^^
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2020-02-07 12:07:02 +00:00
|
|
|
= note: see issue #29625 <https://github.com/rust-lang/rust/issues/29625> for more information
|
2019-07-09 09:32:08 +00:00
|
|
|
= help: add `#![feature(unboxed_closures)]` to the crate attributes to enable
|
2017-12-06 08:27:47 +00:00
|
|
|
|
2018-01-13 13:05:51 +00:00
|
|
|
error[E0658]: intrinsics are subject to change
|
2022-11-05 18:26:54 +00:00
|
|
|
--> $DIR/feature-gate-abi.rs:23:12
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | extern "rust-intrinsic" fn m1();
|
2019-10-27 22:14:35 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2019-07-09 09:32:08 +00:00
|
|
|
= help: add `#![feature(intrinsics)]` to the crate attributes to enable
|
2017-12-06 08:27:47 +00:00
|
|
|
|
2019-04-10 23:40:12 +00:00
|
|
|
error[E0658]: platform intrinsics are experimental and possibly buggy
|
2022-11-05 18:26:54 +00:00
|
|
|
--> $DIR/feature-gate-abi.rs:25:12
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | extern "platform-intrinsic" fn m2();
|
2019-10-27 22:14:35 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2020-02-07 12:07:02 +00:00
|
|
|
= note: see issue #27731 <https://github.com/rust-lang/rust/issues/27731> for more information
|
2019-07-09 09:32:08 +00:00
|
|
|
= help: add `#![feature(platform_intrinsics)]` to the crate attributes to enable
|
2017-12-06 08:27:47 +00:00
|
|
|
|
2019-04-10 23:40:12 +00:00
|
|
|
error[E0658]: rust-call ABI is subject to change
|
2022-11-05 18:26:54 +00:00
|
|
|
--> $DIR/feature-gate-abi.rs:27:12
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2020-11-11 23:15:39 +00:00
|
|
|
LL | extern "rust-call" fn m4(_: ());
|
2019-10-27 22:14:35 +00:00
|
|
|
| ^^^^^^^^^^^
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2020-02-07 12:07:02 +00:00
|
|
|
= note: see issue #29625 <https://github.com/rust-lang/rust/issues/29625> for more information
|
2019-07-09 09:32:08 +00:00
|
|
|
= help: add `#![feature(unboxed_closures)]` to the crate attributes to enable
|
2017-12-06 08:27:47 +00:00
|
|
|
|
2019-04-10 23:40:12 +00:00
|
|
|
error[E0658]: rust-call ABI is subject to change
|
2022-11-05 18:26:54 +00:00
|
|
|
--> $DIR/feature-gate-abi.rs:29:12
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2020-11-11 23:15:39 +00:00
|
|
|
LL | extern "rust-call" fn dm4(_: ()) {}
|
2019-10-27 22:14:35 +00:00
|
|
|
| ^^^^^^^^^^^
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2020-02-07 12:07:02 +00:00
|
|
|
= note: see issue #29625 <https://github.com/rust-lang/rust/issues/29625> for more information
|
2019-07-09 09:32:08 +00:00
|
|
|
= help: add `#![feature(unboxed_closures)]` to the crate attributes to enable
|
2017-12-06 08:27:47 +00:00
|
|
|
|
2018-01-13 13:05:51 +00:00
|
|
|
error[E0658]: intrinsics are subject to change
|
2022-11-05 18:26:54 +00:00
|
|
|
--> $DIR/feature-gate-abi.rs:36:12
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | extern "rust-intrinsic" fn m1() {}
|
2019-10-27 22:14:35 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2019-07-09 09:32:08 +00:00
|
|
|
= help: add `#![feature(intrinsics)]` to the crate attributes to enable
|
2017-12-06 08:27:47 +00:00
|
|
|
|
2019-04-10 23:40:12 +00:00
|
|
|
error[E0658]: platform intrinsics are experimental and possibly buggy
|
2022-11-05 18:26:54 +00:00
|
|
|
--> $DIR/feature-gate-abi.rs:38:12
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | extern "platform-intrinsic" fn m2() {}
|
2019-10-27 22:14:35 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2020-02-07 12:07:02 +00:00
|
|
|
= note: see issue #27731 <https://github.com/rust-lang/rust/issues/27731> for more information
|
2019-07-09 09:32:08 +00:00
|
|
|
= help: add `#![feature(platform_intrinsics)]` to the crate attributes to enable
|
2017-12-06 08:27:47 +00:00
|
|
|
|
2019-04-10 23:40:12 +00:00
|
|
|
error[E0658]: rust-call ABI is subject to change
|
2022-11-05 18:26:54 +00:00
|
|
|
--> $DIR/feature-gate-abi.rs:40:12
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2020-11-11 23:15:39 +00:00
|
|
|
LL | extern "rust-call" fn m4(_: ()) {}
|
2019-10-27 22:14:35 +00:00
|
|
|
| ^^^^^^^^^^^
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2020-02-07 12:07:02 +00:00
|
|
|
= note: see issue #29625 <https://github.com/rust-lang/rust/issues/29625> for more information
|
2019-07-09 09:32:08 +00:00
|
|
|
= help: add `#![feature(unboxed_closures)]` to the crate attributes to enable
|
2017-12-06 08:27:47 +00:00
|
|
|
|
2019-10-24 15:29:29 +00:00
|
|
|
error[E0658]: intrinsics are subject to change
|
2022-11-05 18:26:54 +00:00
|
|
|
--> $DIR/feature-gate-abi.rs:45:12
|
2019-10-24 15:29:29 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | extern "rust-intrinsic" fn im1() {}
|
2019-10-27 22:14:35 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2019-07-09 09:32:08 +00:00
|
|
|
= help: add `#![feature(intrinsics)]` to the crate attributes to enable
|
2017-12-06 08:27:47 +00:00
|
|
|
|
2019-04-10 23:40:12 +00:00
|
|
|
error[E0658]: platform intrinsics are experimental and possibly buggy
|
2022-11-05 18:26:54 +00:00
|
|
|
--> $DIR/feature-gate-abi.rs:47:12
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | extern "platform-intrinsic" fn im2() {}
|
2019-10-27 22:14:35 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2020-02-07 12:07:02 +00:00
|
|
|
= note: see issue #27731 <https://github.com/rust-lang/rust/issues/27731> for more information
|
2019-07-09 09:32:08 +00:00
|
|
|
= help: add `#![feature(platform_intrinsics)]` to the crate attributes to enable
|
2017-12-06 08:27:47 +00:00
|
|
|
|
2019-04-10 23:40:12 +00:00
|
|
|
error[E0658]: rust-call ABI is subject to change
|
2022-11-05 18:26:54 +00:00
|
|
|
--> $DIR/feature-gate-abi.rs:49:12
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2020-11-11 23:15:39 +00:00
|
|
|
LL | extern "rust-call" fn im4(_: ()) {}
|
2019-10-27 22:14:35 +00:00
|
|
|
| ^^^^^^^^^^^
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2020-02-07 12:07:02 +00:00
|
|
|
= note: see issue #29625 <https://github.com/rust-lang/rust/issues/29625> for more information
|
2019-07-09 09:32:08 +00:00
|
|
|
= help: add `#![feature(unboxed_closures)]` to the crate attributes to enable
|
2017-12-06 08:27:47 +00:00
|
|
|
|
2018-01-13 13:05:51 +00:00
|
|
|
error[E0658]: intrinsics are subject to change
|
2022-11-05 18:26:54 +00:00
|
|
|
--> $DIR/feature-gate-abi.rs:53:18
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | type A1 = extern "rust-intrinsic" fn();
|
2019-10-27 22:14:35 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2019-07-09 09:32:08 +00:00
|
|
|
= help: add `#![feature(intrinsics)]` to the crate attributes to enable
|
2017-12-06 08:27:47 +00:00
|
|
|
|
2019-04-10 23:40:12 +00:00
|
|
|
error[E0658]: platform intrinsics are experimental and possibly buggy
|
2022-11-05 18:26:54 +00:00
|
|
|
--> $DIR/feature-gate-abi.rs:54:18
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | type A2 = extern "platform-intrinsic" fn();
|
2019-10-27 22:14:35 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2020-02-07 12:07:02 +00:00
|
|
|
= note: see issue #27731 <https://github.com/rust-lang/rust/issues/27731> for more information
|
2019-07-09 09:32:08 +00:00
|
|
|
= help: add `#![feature(platform_intrinsics)]` to the crate attributes to enable
|
2017-12-06 08:27:47 +00:00
|
|
|
|
2019-04-10 23:40:12 +00:00
|
|
|
error[E0658]: rust-call ABI is subject to change
|
2022-11-05 18:26:54 +00:00
|
|
|
--> $DIR/feature-gate-abi.rs:55:18
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2020-11-11 23:15:39 +00:00
|
|
|
LL | type A4 = extern "rust-call" fn(_: ());
|
2019-10-27 22:14:35 +00:00
|
|
|
| ^^^^^^^^^^^
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2020-02-07 12:07:02 +00:00
|
|
|
= note: see issue #29625 <https://github.com/rust-lang/rust/issues/29625> for more information
|
2019-07-09 09:32:08 +00:00
|
|
|
= help: add `#![feature(unboxed_closures)]` to the crate attributes to enable
|
2017-12-06 08:27:47 +00:00
|
|
|
|
2018-01-13 13:05:51 +00:00
|
|
|
error[E0658]: intrinsics are subject to change
|
2022-11-05 18:26:54 +00:00
|
|
|
--> $DIR/feature-gate-abi.rs:58:8
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | extern "rust-intrinsic" {}
|
2019-10-27 22:14:35 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2019-07-09 09:32:08 +00:00
|
|
|
= help: add `#![feature(intrinsics)]` to the crate attributes to enable
|
2017-12-06 08:27:47 +00:00
|
|
|
|
2019-04-10 23:40:12 +00:00
|
|
|
error[E0658]: platform intrinsics are experimental and possibly buggy
|
2022-11-05 18:26:54 +00:00
|
|
|
--> $DIR/feature-gate-abi.rs:59:8
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | extern "platform-intrinsic" {}
|
2019-10-27 22:14:35 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2020-02-07 12:07:02 +00:00
|
|
|
= note: see issue #27731 <https://github.com/rust-lang/rust/issues/27731> for more information
|
2019-07-09 09:32:08 +00:00
|
|
|
= help: add `#![feature(platform_intrinsics)]` to the crate attributes to enable
|
2017-12-06 08:27:47 +00:00
|
|
|
|
2019-04-10 23:40:12 +00:00
|
|
|
error[E0658]: rust-call ABI is subject to change
|
2022-11-05 18:26:54 +00:00
|
|
|
--> $DIR/feature-gate-abi.rs:60:8
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | extern "rust-call" {}
|
2019-10-27 22:14:35 +00:00
|
|
|
| ^^^^^^^^^^^
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2020-02-07 12:07:02 +00:00
|
|
|
= note: see issue #29625 <https://github.com/rust-lang/rust/issues/29625> for more information
|
2019-07-09 09:32:08 +00:00
|
|
|
= help: add `#![feature(unboxed_closures)]` to the crate attributes to enable
|
2017-12-06 08:27:47 +00:00
|
|
|
|
2019-09-12 14:46:49 +00:00
|
|
|
error: intrinsic must be in `extern "rust-intrinsic" { ... }` block
|
2022-11-05 18:26:54 +00:00
|
|
|
--> $DIR/feature-gate-abi.rs:23:32
|
2019-09-12 14:46:49 +00:00
|
|
|
|
|
|
|
|
LL | extern "rust-intrinsic" fn m1();
|
|
|
|
| ^^
|
|
|
|
|
|
|
|
error: intrinsic must be in `extern "rust-intrinsic" { ... }` block
|
2022-11-05 18:26:54 +00:00
|
|
|
--> $DIR/feature-gate-abi.rs:25:36
|
2019-09-12 14:46:49 +00:00
|
|
|
|
|
|
|
|
LL | extern "platform-intrinsic" fn m2();
|
|
|
|
| ^^
|
|
|
|
|
|
|
|
error: intrinsic must be in `extern "rust-intrinsic" { ... }` block
|
2022-11-05 18:26:54 +00:00
|
|
|
--> $DIR/feature-gate-abi.rs:15:33
|
2019-09-12 14:46:49 +00:00
|
|
|
|
|
|
|
|
LL | extern "rust-intrinsic" fn f1() {}
|
|
|
|
| ^^
|
|
|
|
|
|
|
|
error: intrinsic must be in `extern "rust-intrinsic" { ... }` block
|
2022-11-05 18:26:54 +00:00
|
|
|
--> $DIR/feature-gate-abi.rs:17:37
|
2019-09-12 14:46:49 +00:00
|
|
|
|
|
|
|
|
LL | extern "platform-intrinsic" fn f2() {}
|
|
|
|
| ^^
|
|
|
|
|
|
|
|
error: intrinsic must be in `extern "rust-intrinsic" { ... }` block
|
2022-11-05 18:26:54 +00:00
|
|
|
--> $DIR/feature-gate-abi.rs:36:37
|
2019-09-12 14:46:49 +00:00
|
|
|
|
|
|
|
|
LL | extern "rust-intrinsic" fn m1() {}
|
|
|
|
| ^^
|
|
|
|
|
|
|
|
error: intrinsic must be in `extern "rust-intrinsic" { ... }` block
|
2022-11-05 18:26:54 +00:00
|
|
|
--> $DIR/feature-gate-abi.rs:38:41
|
2019-09-12 14:46:49 +00:00
|
|
|
|
|
|
|
|
LL | extern "platform-intrinsic" fn m2() {}
|
|
|
|
| ^^
|
|
|
|
|
|
|
|
error: intrinsic must be in `extern "rust-intrinsic" { ... }` block
|
2022-11-05 18:26:54 +00:00
|
|
|
--> $DIR/feature-gate-abi.rs:45:38
|
2019-09-12 14:46:49 +00:00
|
|
|
|
|
|
|
|
LL | extern "rust-intrinsic" fn im1() {}
|
|
|
|
| ^^
|
|
|
|
|
|
|
|
error: intrinsic must be in `extern "rust-intrinsic" { ... }` block
|
2022-11-05 18:26:54 +00:00
|
|
|
--> $DIR/feature-gate-abi.rs:47:42
|
2019-09-12 14:46:49 +00:00
|
|
|
|
|
|
|
|
LL | extern "platform-intrinsic" fn im2() {}
|
|
|
|
| ^^
|
|
|
|
|
2022-11-05 18:26:54 +00:00
|
|
|
error: aborting due to 27 previous errors
|
2017-12-06 08:27:47 +00:00
|
|
|
|
2018-03-03 14:59:40 +00:00
|
|
|
For more information about this error, try `rustc --explain E0658`.
|