mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
24 lines
701 B
Plaintext
24 lines
701 B
Plaintext
error: the feature `intrinsics` is internal to the compiler or standard library
|
|
--> $DIR/internal_features.rs:3:12
|
|
|
|
|
LL | #![feature(intrinsics, panic_internals)]
|
|
| ^^^^^^^^^^
|
|
|
|
|
= note: using it is strongly discouraged
|
|
note: the lint level is defined here
|
|
--> $DIR/internal_features.rs:1:11
|
|
|
|
|
LL | #![forbid(internal_features)]
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
error: the feature `panic_internals` is internal to the compiler or standard library
|
|
--> $DIR/internal_features.rs:3:24
|
|
|
|
|
LL | #![feature(intrinsics, panic_internals)]
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
= note: using it is strongly discouraged
|
|
|
|
error: aborting due to 2 previous errors
|
|
|