2018-01-13 07:05:51 -06:00
|
|
|
error[E0658]: intrinsics are subject to change
|
2017-12-06 02:27:47 -06:00
|
|
|
--> $DIR/feature-gate-intrinsics.rs:11:1
|
|
|
|
|
|
|
|
|
11 | / extern "rust-intrinsic" { //~ ERROR intrinsics are subject to change
|
|
|
|
12 | | fn bar();
|
|
|
|
13 | | }
|
|
|
|
| |_^
|
|
|
|
|
|
|
|
|
= help: add #![feature(intrinsics)] to the crate attributes to enable
|
|
|
|
|
2018-01-13 07:05:51 -06:00
|
|
|
error[E0658]: intrinsics are subject to change
|
2017-12-06 02:27:47 -06:00
|
|
|
--> $DIR/feature-gate-intrinsics.rs:15:1
|
|
|
|
|
|
|
|
|
15 | / extern "rust-intrinsic" fn baz() { //~ ERROR intrinsics are subject to change
|
|
|
|
16 | | }
|
|
|
|
| |_^
|
|
|
|
|
|
|
|
|
= help: add #![feature(intrinsics)] to the crate attributes to enable
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2018-02-19 14:40:25 -06:00
|
|
|
If you want more information on this error, try using "rustc --explain E0658"
|