Skip to content

Commit e11cb36

Browse files
committed
Auto merge of #106349 - LeSeulArtichaut:dyn-star-tracking-issue, r=jackh726
Use the correct tracking issue for `dyn_star` `#![feature(dyn_star)]` now has its own tracking issue, #102425.
2 parents 7742995 + 6289fe2 commit e11cb36

10 files changed

+11
-11
lines changed

compiler/rustc_feature/src/active.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ declare_features! (
383383
/// Allows `#[doc(masked)]`.
384384
(active, doc_masked, "1.21.0", Some(44027), None),
385385
/// Allows `dyn* Trait` objects.
386-
(incomplete, dyn_star, "1.65.0", Some(91611), None),
386+
(incomplete, dyn_star, "1.65.0", Some(102425), None),
387387
/// Allows `X..Y` patterns.
388388
(active, exclusive_range_pattern, "1.11.0", Some(37854), None),
389389
/// Allows exhaustive pattern matching on types that contain uninhabited types.

src/test/ui/dyn-star/align.normal.stderr

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

1010
warning: 1 warning emitted

src/test/ui/dyn-star/align.over_aligned.stderr

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

1010
error[E0277]: `AlignedUsize` needs to be a pointer-sized type

src/test/ui/dyn-star/dispatch-on-pin-mut.stderr

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

1010
warning: 1 warning emitted

src/test/ui/dyn-star/dont-unsize-coerce-dyn-star.stderr

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

1010
warning: 1 warning emitted

src/test/ui/dyn-star/feature-gate-dyn_star.stderr

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

1010
error: aborting due to previous error

src/test/ui/dyn-star/no-explicit-dyn-star-cast.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ error[E0658]: dyn* trait objects are unstable
44
LL | let dyn_i: dyn* Debug = i as dyn* Debug;
55
| ^^^^^^^^^^
66
|
7-
= note: see issue #91611 <https://github.com/rust-lang/rust/issues/91611> for more information
7+
= note: see issue #102425 <https://github.com/rust-lang/rust/issues/102425> for more information
88
= help: add `#![feature(dyn_star)]` to the crate attributes to enable
99

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

1919
error[E0606]: casting `usize` as `dyn* Debug` is invalid

src/test/ui/dyn-star/no-unsize-coerce-dyn-trait.stderr

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

1010
error[E0308]: mismatched types

src/test/ui/dyn-star/return.stderr

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

1010
warning: 1 warning emitted

src/test/ui/dyn-star/upcast.stderr

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

1010
error[E0277]: `dyn* Foo` needs to be a pointer-sized type

0 commit comments

Comments
 (0)