Skip to content

Commit 48ae6ec

Browse files
committed
Update ui-fulldeps.
1 parent fedd778 commit 48ae6ec

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/test/ui-fulldeps/hash-stable-is-unstable.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
extern crate rustc_data_structures;
44
//~^ use of unstable library feature 'rustc_private'
5-
extern crate rustc_middle;
6-
//~^ use of unstable library feature 'rustc_private'
75
extern crate rustc_macros;
86
//~^ use of unstable library feature 'rustc_private'
7+
extern crate rustc_query_system;
8+
//~^ use of unstable library feature 'rustc_private'
99

1010
use rustc_macros::HashStable;
1111
//~^ use of unstable library feature 'rustc_private'

src/test/ui-fulldeps/hash-stable-is-unstable.stderr

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ LL | extern crate rustc_data_structures;
1010
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?
1111
--> $DIR/hash-stable-is-unstable.rs:5:1
1212
|
13-
LL | extern crate rustc_middle;
13+
LL | extern crate rustc_macros;
1414
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
1515
|
1616
= note: see issue #27812 <https://github.com/rust-lang/rust/issues/27812> for more information
@@ -19,8 +19,8 @@ LL | extern crate rustc_middle;
1919
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?
2020
--> $DIR/hash-stable-is-unstable.rs:7:1
2121
|
22-
LL | extern crate rustc_macros;
23-
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
22+
LL | extern crate rustc_query_system;
23+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2424
|
2525
= note: see issue #27812 <https://github.com/rust-lang/rust/issues/27812> for more information
2626
= help: add `#![feature(rustc_private)]` to the crate attributes to enable

0 commit comments

Comments
 (0)