There was an error while loading. Please reload this page.
1 parent 4560cb8 commit 2a49dd0Copy full SHA for 2a49dd0
3 files changed
src/libsyntax/feature_gate.rs
@@ -472,7 +472,7 @@ declare_features! (
472
(active, doc_alias, "1.27.0", Some(50146), None),
473
474
// Allows defining `existential type`s.
475
- (active, existential_type, "1.28.0", Some(34511), None),
+ (active, existential_type, "1.28.0", Some(63063), None),
476
477
// Allows inconsistent bounds in where clauses.
478
(active, trivial_bounds, "1.28.0", Some(48214), None),
@@ -525,7 +525,7 @@ declare_features! (
525
(active, bind_by_move_pattern_guards, "1.30.0", Some(15287), None),
526
527
// Allows `impl Trait` in bindings (`let`, `const`, `static`).
528
- (active, impl_trait_in_bindings, "1.30.0", Some(34511), None),
+ (active, impl_trait_in_bindings, "1.30.0", Some(63065), None),
529
530
// Allows using `reason` in lint attributes and the `#[expect(lint)]` lint check.
531
(active, lint_reasons, "1.31.0", Some(54503), None),
src/test/ui/existential-type/issue-60371.stderr
@@ -4,7 +4,7 @@ error[E0658]: existential types are unstable
4
LL | existential type Item: Bug;
5
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
6
|
7
- = note: for more information, see https://github.com/rust-lang/rust/issues/34511
+ = note: for more information, see https://github.com/rust-lang/rust/issues/63063
8
= help: add `#![feature(existential_type)]` to the crate attributes to enable
9
10
error[E0277]: the trait bound `(): Bug` is not satisfied
src/test/ui/feature-gates/feature-gate-existential-type.stderr
LL | existential type Foo: std::fmt::Debug;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error[E0658]: existential types are unstable
@@ -13,7 +13,7 @@ error[E0658]: existential types are unstable
13
LL | existential type Baa: std::fmt::Debug;
14
15
16
17
18
19
error: aborting due to 2 previous errors
0 commit comments