rust/src/test/ui/feature-gate-intrinsics.stderr
Vadim Petrochenkov fa2d9fc4b9 Update UI tests
2018-02-26 20:24:02 +03:00

23 lines
689 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
If you want more information on this error, try using "rustc --explain E0658"