mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
85 lines
3.1 KiB
Plaintext
85 lines
3.1 KiB
Plaintext
error[E0658]: use of unstable library feature 'unstable_test_feature'
|
|
--> $DIR/offset-of-unstable.rs:14:9
|
|
|
|
|
LL | Unstable,
|
|
| ^^^^^^^^
|
|
|
|
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
|
|
|
|
error[E0658]: use of unstable library feature 'unstable_test_feature'
|
|
--> $DIR/offset-of-unstable.rs:23:9
|
|
|
|
|
LL | UnstableWithStableFieldType,
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
|
|
|
|
error[E0658]: use of unstable library feature 'unstable_test_feature'
|
|
--> $DIR/offset-of-unstable.rs:28:9
|
|
|
|
|
LL | UnstableWithStableFieldType,
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
|
|
|
|
error[E0658]: use of unstable library feature 'unstable_test_feature'
|
|
--> $DIR/offset-of-unstable.rs:12:5
|
|
|
|
|
LL | / offset_of!(
|
|
LL | |
|
|
LL | | Unstable,
|
|
LL | | unstable
|
|
LL | | );
|
|
| |_____^
|
|
|
|
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
|
|
= note: this error originates in the macro `offset_of` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error[E0658]: use of unstable library feature 'unstable_test_feature'
|
|
--> $DIR/offset-of-unstable.rs:18:5
|
|
|
|
|
LL | offset_of!(StableWithUnstableField, unstable);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
|
|
= note: this error originates in the macro `offset_of` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error[E0658]: use of unstable library feature 'unstable_test_feature'
|
|
--> $DIR/offset-of-unstable.rs:20:5
|
|
|
|
|
LL | offset_of!(StableWithUnstableFieldType, stable.unstable);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
|
|
= note: this error originates in the macro `offset_of` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error[E0658]: use of unstable library feature 'unstable_test_feature'
|
|
--> $DIR/offset-of-unstable.rs:21:5
|
|
|
|
|
LL | / offset_of!(
|
|
LL | |
|
|
LL | | UnstableWithStableFieldType,
|
|
LL | | unstable
|
|
LL | | );
|
|
| |_____^
|
|
|
|
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
|
|
= note: this error originates in the macro `offset_of` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error[E0658]: use of unstable library feature 'unstable_test_feature'
|
|
--> $DIR/offset-of-unstable.rs:26:5
|
|
|
|
|
LL | / offset_of!(
|
|
LL | |
|
|
LL | | UnstableWithStableFieldType,
|
|
LL | | unstable.stable
|
|
LL | | );
|
|
| |_____^
|
|
|
|
|
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
|
|
= note: this error originates in the macro `offset_of` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error: aborting due to 8 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0658`.
|