Skip to content

Commit

Permalink
Rollup merge of rust-lang#86937 - rylev:tracking-more-qualified-paths…
Browse files Browse the repository at this point in the history
…, 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 rust-lang#80080 to an actual tracking issue rust-lang#86935.
  • Loading branch information
m-ou-se committed Jul 9, 2021
2 parents ad10107 + 7515bcf commit 07b9dae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion compiler/rustc_feature/src/active.rs
Expand Up @@ -685,7 +685,7 @@ declare_features! (
(incomplete, unnamed_fields, "1.53.0", Some(49804), None),

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

// -------------------------------------------------------------------------
// feature-group-end: actual feature gates
Expand Down
Expand Up @@ -4,7 +4,7 @@ error[E0658]: usage of qualified paths in this context is experimental
LL | let <Foo as A>::Assoc { br } = StructStruct { br: 2 };
| ^^^^^^^^^^^^^^^^^
|
= note: see issue #80080 <https://github.com/rust-lang/rust/issues/80080> for more information
= note: see issue #86935 <https://github.com/rust-lang/rust/issues/86935> for more information
= help: add `#![feature(more_qualified_paths)]` to the crate attributes to enable

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

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

error: aborting due to 3 previous errors
Expand Down

0 comments on commit 07b9dae

Please sign in to comment.