rust/src/test/ui/feature-gate-intrinsics.stderr
Guillaume Gomez 2e104a77cf update tests
2018-03-14 00:53:24 +01:00

23 lines
679 B
Plaintext

error[E0658]: intrinsics are subject to change
--> $DIR/feature-gate-intrinsics.rs:11:1
|
LL | / extern "rust-intrinsic" { //~ ERROR intrinsics are subject to change
LL | | fn bar();
LL | | }
| |_^
|
= help: add #![feature(intrinsics)] to the crate attributes to enable
error[E0658]: intrinsics are subject to change
--> $DIR/feature-gate-intrinsics.rs:15:1
|
LL | / extern "rust-intrinsic" fn baz() { //~ ERROR intrinsics are subject to change
LL | | }
| |_^
|
= help: add #![feature(intrinsics)] to the crate attributes to enable
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0658`.