rust/tests/ui-fulldeps/hash-stable-is-unstable.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

55 lines
3.1 KiB
Plaintext
Raw Normal View History

2019-04-11 16:18:38 -05:00
error[E0658]: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead?
2024-01-10 00:39:02 -06:00
--> $DIR/hash-stable-is-unstable.rs:3:1
2019-03-05 12:28:20 -06:00
|
LL | extern crate rustc_data_structures;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2020-02-07 06:07:02 -06:00
= note: see issue #27812 <https://github.com/rust-lang/rust/issues/27812> for more information
= help: add `#![feature(rustc_private)]` to the crate attributes to enable
2024-01-10 00:39:02 -06:00
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
2019-03-05 12:28:20 -06:00
2019-04-11 16:18:38 -05:00
error[E0658]: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead?
2024-01-10 00:39:02 -06:00
--> $DIR/hash-stable-is-unstable.rs:7:1
2019-03-05 12:28:20 -06:00
|
2021-09-26 08:54:02 -05:00
LL | extern crate rustc_macros;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
2019-03-05 12:28:20 -06:00
|
2020-02-07 06:07:02 -06:00
= note: see issue #27812 <https://github.com/rust-lang/rust/issues/27812> for more information
= help: add `#![feature(rustc_private)]` to the crate attributes to enable
2024-01-10 00:39:02 -06:00
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
2019-03-05 12:28:20 -06:00
2019-04-11 16:18:38 -05:00
error[E0658]: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead?
2024-01-10 00:39:02 -06:00
--> $DIR/hash-stable-is-unstable.rs:11:1
2019-03-05 12:28:20 -06:00
|
2021-09-26 08:54:02 -05:00
LL | extern crate rustc_query_system;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2019-03-05 12:28:20 -06:00
|
2020-02-07 06:07:02 -06:00
= note: see issue #27812 <https://github.com/rust-lang/rust/issues/27812> for more information
= help: add `#![feature(rustc_private)]` to the crate attributes to enable
2024-01-10 00:39:02 -06:00
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
2019-03-05 12:28:20 -06:00
2019-04-11 16:18:38 -05:00
error[E0658]: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead?
2024-01-10 00:39:02 -06:00
--> $DIR/hash-stable-is-unstable.rs:16:5
2019-03-05 12:28:20 -06:00
|
LL | use rustc_macros::HashStable;
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
2020-02-07 06:07:02 -06:00
= note: see issue #27812 <https://github.com/rust-lang/rust/issues/27812> for more information
= help: add `#![feature(rustc_private)]` to the crate attributes to enable
2024-01-10 00:39:02 -06:00
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
2019-03-05 12:28:20 -06:00
2019-04-11 16:18:38 -05:00
error[E0658]: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead?
2024-01-10 00:39:02 -06:00
--> $DIR/hash-stable-is-unstable.rs:21:10
2019-03-05 12:28:20 -06:00
|
LL | #[derive(HashStable)]
| ^^^^^^^^^^
|
2020-02-07 06:07:02 -06:00
= note: see issue #27812 <https://github.com/rust-lang/rust/issues/27812> for more information
= help: add `#![feature(rustc_private)]` to the crate attributes to enable
2024-01-10 00:39:02 -06:00
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
= note: this error originates in the derive macro `HashStable` (in Nightly builds, run with -Z macro-backtrace for more info)
2019-03-05 12:28:20 -06:00
error: aborting due to 5 previous errors
2019-03-05 12:28:20 -06:00
For more information about this error, try `rustc --explain E0658`.