Skip to content

Commit 2a49dd0

Browse files
committed
Update existential_type + impl_trait_in_bindings issue numbers.
1 parent 4560cb8 commit 2a49dd0

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/libsyntax/feature_gate.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ declare_features! (
472472
(active, doc_alias, "1.27.0", Some(50146), None),
473473

474474
// Allows defining `existential type`s.
475-
(active, existential_type, "1.28.0", Some(34511), None),
475+
(active, existential_type, "1.28.0", Some(63063), None),
476476

477477
// Allows inconsistent bounds in where clauses.
478478
(active, trivial_bounds, "1.28.0", Some(48214), None),
@@ -525,7 +525,7 @@ declare_features! (
525525
(active, bind_by_move_pattern_guards, "1.30.0", Some(15287), None),
526526

527527
// Allows `impl Trait` in bindings (`let`, `const`, `static`).
528-
(active, impl_trait_in_bindings, "1.30.0", Some(34511), None),
528+
(active, impl_trait_in_bindings, "1.30.0", Some(63065), None),
529529

530530
// Allows using `reason` in lint attributes and the `#[expect(lint)]` lint check.
531531
(active, lint_reasons, "1.31.0", Some(54503), None),

src/test/ui/existential-type/issue-60371.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ error[E0658]: existential types are unstable
44
LL | existential type Item: Bug;
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
66
|
7-
= note: for more information, see https://github.com/rust-lang/rust/issues/34511
7+
= note: for more information, see https://github.com/rust-lang/rust/issues/63063
88
= help: add `#![feature(existential_type)]` to the crate attributes to enable
99

1010
error[E0277]: the trait bound `(): Bug` is not satisfied

src/test/ui/feature-gates/feature-gate-existential-type.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ error[E0658]: existential types are unstable
44
LL | existential type Foo: std::fmt::Debug;
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
66
|
7-
= note: for more information, see https://github.com/rust-lang/rust/issues/34511
7+
= note: for more information, see https://github.com/rust-lang/rust/issues/63063
88
= help: add `#![feature(existential_type)]` to the crate attributes to enable
99

1010
error[E0658]: existential types are unstable
@@ -13,7 +13,7 @@ error[E0658]: existential types are unstable
1313
LL | existential type Baa: std::fmt::Debug;
1414
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1515
|
16-
= note: for more information, see https://github.com/rust-lang/rust/issues/34511
16+
= note: for more information, see https://github.com/rust-lang/rust/issues/63063
1717
= help: add `#![feature(existential_type)]` to the crate attributes to enable
1818

1919
error: aborting due to 2 previous errors

0 commit comments

Comments
 (0)