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
use backticks instead of single quotes when reporting "use of unstable library feature"
This is consistent with all other diagnostics I could find containing
features and enables the use of `DiagSymbolList` for generalizing
diagnostics for unstable library features to multiple features.
Copy file name to clipboardexpand all lines: tests/ui-fulldeps/hash-stable-is-unstable.rs
+5-5
Original file line number
Diff line number
Diff line change
@@ -1,24 +1,24 @@
1
1
//@ compile-flags: -Zdeduplicate-diagnostics=yes
2
2
externcrate rustc_data_structures;
3
-
//~^ use of unstable library feature 'rustc_private'
3
+
//~^ use of unstable library feature `rustc_private`
4
4
//~| NOTE: issue #27812 <https://github.com/rust-lang/rust/issues/27812> for more information
5
5
//~| NOTE: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
6
6
externcrate rustc_macros;
7
-
//~^ use of unstable library feature 'rustc_private'
7
+
//~^ use of unstable library feature `rustc_private`
8
8
//~| NOTE: see issue #27812 <https://github.com/rust-lang/rust/issues/27812> for more information
9
9
//~| NOTE: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
10
10
externcrate rustc_query_system;
11
-
//~^ use of unstable library feature 'rustc_private'
11
+
//~^ use of unstable library feature `rustc_private`
12
12
//~| NOTE: see issue #27812 <https://github.com/rust-lang/rust/issues/27812> for more information
13
13
//~| NOTE: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
14
14
15
15
use rustc_macros::HashStable;
16
-
//~^ use of unstable library feature 'rustc_private'
16
+
//~^ use of unstable library feature `rustc_private`
17
17
//~| NOTE: see issue #27812 <https://github.com/rust-lang/rust/issues/27812> for more information
18
18
//~| NOTE: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
19
19
20
20
#[derive(HashStable)]
21
-
//~^ use of unstable library feature 'rustc_private'
21
+
//~^ use of unstable library feature `rustc_private`
22
22
//~| NOTE: in this expansion of #[derive(HashStable)]
23
23
//~| NOTE: in this expansion of #[derive(HashStable)]
24
24
//~| NOTE: in this expansion of #[derive(HashStable)]
Copy file name to clipboardexpand all lines: tests/ui-fulldeps/hash-stable-is-unstable.stderr
+5-5
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
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?
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?
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
12
--> $DIR/hash-stable-is-unstable.rs:6:1
13
13
|
14
14
LL | extern crate rustc_macros;
@@ -18,7 +18,7 @@ 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?
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?
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
32
--> $DIR/hash-stable-is-unstable.rs:15:5
33
33
|
34
34
LL | use rustc_macros::HashStable;
@@ -38,7 +38,7 @@ 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?
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
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
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?
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?
Copy file name to clipboardexpand all lines: tests/ui/feature-gates/bench.stderr
+4-4
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
error: use of unstable library feature 'test': `bench` is a part of custom test frameworks which are unstable
1
+
error: use of unstable library feature `test`: `bench` is a part of custom test frameworks which are unstable
2
2
--> $DIR/bench.rs:3:3
3
3
|
4
4
LL | #[bench]
@@ -8,7 +8,7 @@ LL | #[bench]
8
8
= note: for more information, see issue #64266 <https://github.com/rust-lang/rust/issues/64266>
9
9
= note: `#[deny(soft_unstable)]` on by default
10
10
11
-
error: use of unstable library feature 'test': `bench` is a part of custom test frameworks which are unstable
11
+
error: use of unstable library feature `test`: `bench` is a part of custom test frameworks which are unstable
0 commit comments