rust/src/test/ui/feature-gate-intrinsics.stderr

23 lines
689 B
Plaintext
Raw Normal View History

error[E0658]: intrinsics are subject to change
--> $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
error[E0658]: intrinsics are subject to change
--> $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"