2018-01-13 13:05:51 +00:00
|
|
|
error[E0658]: intrinsics are subject to change
|
2019-10-27 22:14:35 +00:00
|
|
|
--> $DIR/feature-gate-intrinsics.rs:1:8
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2019-10-27 22:14:35 +00:00
|
|
|
LL | extern "rust-intrinsic" {
|
|
|
|
| ^^^^^^^^^^^^^^^^
|
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
|
|
|
|
2018-01-13 13:05:51 +00:00
|
|
|
error[E0658]: intrinsics are subject to change
|
2019-10-27 22:14:35 +00:00
|
|
|
--> $DIR/feature-gate-intrinsics.rs:5:8
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | extern "rust-intrinsic" fn baz() {}
|
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-01-02 14:14:24 +00:00
|
|
|
error[E0093]: unrecognized intrinsic function: `bar`
|
|
|
|
--> $DIR/feature-gate-intrinsics.rs:2:5
|
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | fn bar();
|
2019-01-02 14:14:24 +00:00
|
|
|
| ^^^^^^^^^ unrecognized intrinsic
|
|
|
|
|
2019-09-12 14:46:49 +00:00
|
|
|
error: intrinsic must be in `extern "rust-intrinsic" { ... }` block
|
|
|
|
--> $DIR/feature-gate-intrinsics.rs:5:34
|
|
|
|
|
|
|
|
|
LL | extern "rust-intrinsic" fn baz() {}
|
|
|
|
| ^^
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
2017-12-06 08:27:47 +00:00
|
|
|
|
2019-04-17 17:26:38 +00:00
|
|
|
Some errors have detailed explanations: E0093, E0658.
|
2019-01-02 14:14:24 +00:00
|
|
|
For more information about an error, try `rustc --explain E0093`.
|