You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Auto merge of rust-lang#132603 - matthiaskrgr:rollup-ikzofgc, r=matthiaskrgr
Rollup of 6 pull requests
Successful merges:
- rust-lang#132355 (Fix compiler panic with a large number of threads)
- rust-lang#132486 (No need to instantiate binder in `confirm_async_closure_candidate`)
- rust-lang#132544 (Use backticks instead of single quotes for library feature names in diagnostics)
- rust-lang#132559 (find the generic container rather than simply looking up for the assoc with const arg)
- rust-lang#132579 (add rustc std workspace crate sources)
- rust-lang#132583 (Suggest creating unary tuples when types don't match a trait)
r? `@ghost`
`@rustbot` modify labels: rollup
Copy file name to clipboardexpand all lines: tests/ui-fulldeps/hash-stable-is-unstable.stderr
+10-10
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
-
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?
2
-
--> $DIR/hash-stable-is-unstable.rs:2:1
1
+
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?
= help: add `#![feature(rustc_private)]` to the crate attributes to enable
9
9
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
10
10
11
-
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?
12
-
--> $DIR/hash-stable-is-unstable.rs:6:1
11
+
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?
12
+
--> $DIR/hash-stable-is-unstable.rs:7:1
13
13
|
14
14
LL | extern crate rustc_macros;
15
15
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -18,8 +18,8 @@ LL | extern crate rustc_macros;
18
18
= help: add `#![feature(rustc_private)]` to the crate attributes to enable
19
19
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
20
20
21
-
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?
22
-
--> $DIR/hash-stable-is-unstable.rs:10:1
21
+
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?
= help: add `#![feature(rustc_private)]` to the crate attributes to enable
29
29
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
30
30
31
-
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?
32
-
--> $DIR/hash-stable-is-unstable.rs:15:5
31
+
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?
32
+
--> $DIR/hash-stable-is-unstable.rs:16:5
33
33
|
34
34
LL | use rustc_macros::HashStable;
35
35
| ^^^^^^^^^^^^^^^^^^^^^^^^
@@ -38,8 +38,8 @@ LL | use rustc_macros::HashStable;
38
38
= help: add `#![feature(rustc_private)]` to the crate attributes to enable
39
39
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
40
40
41
-
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?
42
-
--> $DIR/hash-stable-is-unstable.rs:20:10
41
+
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?
Copy file name to clipboardexpand all lines: tests/ui-fulldeps/pathless-extern-unstable.stderr
+2-2
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
-
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?
2
-
--> $DIR/pathless-extern-unstable.rs:6:9
1
+
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?
0 commit comments