Skip to content

Commit 07b9dae

Browse files
authored
Rollup merge of #86937 - rylev:tracking-more-qualified-paths, r=nagisa
Change linked tracking issue for more_qualified_paths This updates the linked tracking issue for the `more_qualified_paths` feature from the implementation PR #80080 to an actual tracking issue #86935.
2 parents ad10107 + 7515bcf commit 07b9dae

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

compiler/rustc_feature/src/active.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -685,7 +685,7 @@ declare_features! (
685685
(incomplete, unnamed_fields, "1.53.0", Some(49804), None),
686686

687687
/// Allows qualified paths in struct expressions, struct patterns and tuple struct patterns.
688-
(active, more_qualified_paths, "1.54.0", Some(80080), None),
688+
(active, more_qualified_paths, "1.54.0", Some(86935), None),
689689

690690
// -------------------------------------------------------------------------
691691
// feature-group-end: actual feature gates

src/test/ui/feature-gates/feature-gate-more-qualified-paths.stderr

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ error[E0658]: usage of qualified paths in this context is experimental
44
LL | let <Foo as A>::Assoc { br } = StructStruct { br: 2 };
55
| ^^^^^^^^^^^^^^^^^
66
|
7-
= note: see issue #80080 <https://github.com/rust-lang/rust/issues/80080> for more information
7+
= note: see issue #86935 <https://github.com/rust-lang/rust/issues/86935> for more information
88
= help: add `#![feature(more_qualified_paths)]` to the crate attributes to enable
99

1010
error[E0658]: usage of qualified paths in this context is experimental
@@ -13,7 +13,7 @@ error[E0658]: usage of qualified paths in this context is experimental
1313
LL | let _ = <Foo as A>::Assoc { br: 2 };
1414
| ^^^^^^^^^^^^^^^^^
1515
|
16-
= note: see issue #80080 <https://github.com/rust-lang/rust/issues/80080> for more information
16+
= note: see issue #86935 <https://github.com/rust-lang/rust/issues/86935> for more information
1717
= help: add `#![feature(more_qualified_paths)]` to the crate attributes to enable
1818

1919
error[E0658]: usage of qualified paths in this context is experimental
@@ -22,7 +22,7 @@ error[E0658]: usage of qualified paths in this context is experimental
2222
LL | let <E>::V(..) = E::V(0);
2323
| ^^^^^^
2424
|
25-
= note: see issue #80080 <https://github.com/rust-lang/rust/issues/80080> for more information
25+
= note: see issue #86935 <https://github.com/rust-lang/rust/issues/86935> for more information
2626
= help: add `#![feature(more_qualified_paths)]` to the crate attributes to enable
2727

2828
error: aborting due to 3 previous errors

0 commit comments

Comments
 (0)