Use the correct tracking issue for dyn_star

This commit is contained in:
Léo Lanteri Thauvin 2023-01-01 12:25:21 +01:00
parent bb6e76df06
commit 6289fe2cf1
10 changed files with 11 additions and 11 deletions

View file

@ -383,7 +383,7 @@ declare_features! (
/// Allows `#[doc(masked)]`. /// Allows `#[doc(masked)]`.
(active, doc_masked, "1.21.0", Some(44027), None), (active, doc_masked, "1.21.0", Some(44027), None),
/// Allows `dyn* Trait` objects. /// Allows `dyn* Trait` objects.
(incomplete, dyn_star, "1.65.0", Some(91611), None), (incomplete, dyn_star, "1.65.0", Some(102425), None),
/// Allows `X..Y` patterns. /// Allows `X..Y` patterns.
(active, exclusive_range_pattern, "1.11.0", Some(37854), None), (active, exclusive_range_pattern, "1.11.0", Some(37854), None),
/// Allows exhaustive pattern matching on types that contain uninhabited types. /// Allows exhaustive pattern matching on types that contain uninhabited types.

View file

@ -4,7 +4,7 @@ warning: the feature `dyn_star` is incomplete and may not be safe to use and/or
LL | #![feature(dyn_star)] LL | #![feature(dyn_star)]
| ^^^^^^^^ | ^^^^^^^^
| |
= note: see issue #91611 <https://github.com/rust-lang/rust/issues/91611> for more information = note: see issue #102425 <https://github.com/rust-lang/rust/issues/102425> for more information
= note: `#[warn(incomplete_features)]` on by default = note: `#[warn(incomplete_features)]` on by default
warning: 1 warning emitted warning: 1 warning emitted

View file

@ -4,7 +4,7 @@ warning: the feature `dyn_star` is incomplete and may not be safe to use and/or
LL | #![feature(dyn_star)] LL | #![feature(dyn_star)]
| ^^^^^^^^ | ^^^^^^^^
| |
= note: see issue #91611 <https://github.com/rust-lang/rust/issues/91611> for more information = note: see issue #102425 <https://github.com/rust-lang/rust/issues/102425> for more information
= note: `#[warn(incomplete_features)]` on by default = note: `#[warn(incomplete_features)]` on by default
error[E0277]: `AlignedUsize` needs to be a pointer-sized type error[E0277]: `AlignedUsize` needs to be a pointer-sized type

View file

@ -4,7 +4,7 @@ warning: the feature `dyn_star` is incomplete and may not be safe to use and/or
LL | #![feature(dyn_star)] LL | #![feature(dyn_star)]
| ^^^^^^^^ | ^^^^^^^^
| |
= note: see issue #91611 <https://github.com/rust-lang/rust/issues/91611> for more information = note: see issue #102425 <https://github.com/rust-lang/rust/issues/102425> for more information
= note: `#[warn(incomplete_features)]` on by default = note: `#[warn(incomplete_features)]` on by default
warning: 1 warning emitted warning: 1 warning emitted

View file

@ -4,7 +4,7 @@ warning: the feature `dyn_star` is incomplete and may not be safe to use and/or
LL | #![feature(dyn_star)] LL | #![feature(dyn_star)]
| ^^^^^^^^ | ^^^^^^^^
| |
= note: see issue #91611 <https://github.com/rust-lang/rust/issues/91611> for more information = note: see issue #102425 <https://github.com/rust-lang/rust/issues/102425> for more information
= note: `#[warn(incomplete_features)]` on by default = note: `#[warn(incomplete_features)]` on by default
warning: 1 warning emitted warning: 1 warning emitted

View file

@ -4,7 +4,7 @@ error[E0658]: dyn* trait objects are unstable
LL | pub fn dyn_star_parameter(_: &dyn* Send) { LL | pub fn dyn_star_parameter(_: &dyn* Send) {
| ^^^^^^^^^ | ^^^^^^^^^
| |
= note: see issue #91611 <https://github.com/rust-lang/rust/issues/91611> for more information = note: see issue #102425 <https://github.com/rust-lang/rust/issues/102425> for more information
= help: add `#![feature(dyn_star)]` to the crate attributes to enable = help: add `#![feature(dyn_star)]` to the crate attributes to enable
error: aborting due to previous error error: aborting due to previous error

View file

@ -4,7 +4,7 @@ error[E0658]: dyn* trait objects are unstable
LL | let dyn_i: dyn* Debug = i as dyn* Debug; LL | let dyn_i: dyn* Debug = i as dyn* Debug;
| ^^^^^^^^^^ | ^^^^^^^^^^
| |
= note: see issue #91611 <https://github.com/rust-lang/rust/issues/91611> for more information = note: see issue #102425 <https://github.com/rust-lang/rust/issues/102425> for more information
= help: add `#![feature(dyn_star)]` to the crate attributes to enable = help: add `#![feature(dyn_star)]` to the crate attributes to enable
error[E0658]: dyn* trait objects are unstable error[E0658]: dyn* trait objects are unstable
@ -13,7 +13,7 @@ error[E0658]: dyn* trait objects are unstable
LL | let dyn_i: dyn* Debug = i as dyn* Debug; LL | let dyn_i: dyn* Debug = i as dyn* Debug;
| ^^^^^^^^^^ | ^^^^^^^^^^
| |
= note: see issue #91611 <https://github.com/rust-lang/rust/issues/91611> for more information = note: see issue #102425 <https://github.com/rust-lang/rust/issues/102425> for more information
= help: add `#![feature(dyn_star)]` to the crate attributes to enable = help: add `#![feature(dyn_star)]` to the crate attributes to enable
error[E0606]: casting `usize` as `dyn* Debug` is invalid error[E0606]: casting `usize` as `dyn* Debug` is invalid

View file

@ -4,7 +4,7 @@ warning: the feature `dyn_star` is incomplete and may not be safe to use and/or
LL | #![feature(dyn_star, trait_upcasting)] LL | #![feature(dyn_star, trait_upcasting)]
| ^^^^^^^^ | ^^^^^^^^
| |
= note: see issue #91611 <https://github.com/rust-lang/rust/issues/91611> for more information = note: see issue #102425 <https://github.com/rust-lang/rust/issues/102425> for more information
= note: `#[warn(incomplete_features)]` on by default = note: `#[warn(incomplete_features)]` on by default
error[E0308]: mismatched types error[E0308]: mismatched types

View file

@ -4,7 +4,7 @@ warning: the feature `dyn_star` is incomplete and may not be safe to use and/or
LL | #![feature(dyn_star)] LL | #![feature(dyn_star)]
| ^^^^^^^^ | ^^^^^^^^
| |
= note: see issue #91611 <https://github.com/rust-lang/rust/issues/91611> for more information = note: see issue #102425 <https://github.com/rust-lang/rust/issues/102425> for more information
= note: `#[warn(incomplete_features)]` on by default = note: `#[warn(incomplete_features)]` on by default
warning: 1 warning emitted warning: 1 warning emitted

View file

@ -4,7 +4,7 @@ warning: the feature `dyn_star` is incomplete and may not be safe to use and/or
LL | #![feature(dyn_star, trait_upcasting)] LL | #![feature(dyn_star, trait_upcasting)]
| ^^^^^^^^ | ^^^^^^^^
| |
= note: see issue #91611 <https://github.com/rust-lang/rust/issues/91611> for more information = note: see issue #102425 <https://github.com/rust-lang/rust/issues/102425> for more information
= note: `#[warn(incomplete_features)]` on by default = note: `#[warn(incomplete_features)]` on by default
error[E0277]: `dyn* Foo` needs to be a pointer-sized type error[E0277]: `dyn* Foo` needs to be a pointer-sized type