mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
d56cdd48cb
Update tests
22 lines
728 B
Plaintext
22 lines
728 B
Plaintext
error[E0658]: the `#[rustc_safe_intrinsic]` attribute is used internally to mark intrinsics as safe
|
|
--> $DIR/feature-gate-safe-intrinsic.rs:1:1
|
|
|
|
|
LL | #[rustc_safe_intrinsic]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: add `#![feature(rustc_attrs)]` to the crate attributes to enable
|
|
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
|
|
|
error: attribute should be applied to intrinsic functions
|
|
--> $DIR/feature-gate-safe-intrinsic.rs:1:1
|
|
|
|
|
LL | #[rustc_safe_intrinsic]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
|
...
|
|
LL | fn safe() {}
|
|
| ------------ not an intrinsic function
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0658`.
|